DisplayTableViewCell.m 822 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // DisplayTableViewCell.m
  3. // BuguLive
  4. //
  5. // Created by yy on 16/7/20.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import "DisplayTableViewCell.h"
  9. @implementation DisplayTableViewCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. self.lineView.backgroundColor = kBackGroundColor;
  14. self.topLabel.textColor = kAppGrayColor1;
  15. self.bottomLabel.textColor = kAppGrayColor3;
  16. self.rightLabel.textColor = kAppMainColor;
  17. self.rightLabel.layer.cornerRadius = 15;
  18. self.rightLabel.layer.borderColor = [kAppMainColor CGColor];
  19. self.rightLabel.layer.masksToBounds = YES;
  20. self.rightLabel.layer.borderWidth = 1;
  21. }
  22. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  23. [super setSelected:selected animated:animated];
  24. // Configure the view for the selected state
  25. }
  26. @end