PrivateLetterTableViewCell.m 451 B

123456789101112131415161718192021222324
  1. //
  2. // PrivateLetterTableViewCell.m
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/6/23.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "PrivateLetterTableViewCell.h"
  9. @implementation PrivateLetterTableViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. }
  14. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  15. [super setSelected:selected animated:animated];
  16. // Configure the view for the selected state
  17. }
  18. @end