CdescriptTableViewCell.m 490 B

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