TrainDetailCell.m 830 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // TrainDetailCell.m
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/3/10.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import "TrainDetailCell.h"
  9. @implementation TrainDetailCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. self.backgroundColor = backGroundColor;
  13. self.contentView.backgroundColor = backGroundColor;
  14. _titleLabel.textColor = kTitleColor;
  15. _contentLabel.textColor = contentTextColor;
  16. _titleLabel.font = [UIFont scaleSize:18];
  17. _contentLabel.font = [UIFont scaleSize:15];
  18. [_orbitBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
  19. [_commentBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
  20. }
  21. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  22. [super setSelected:selected animated:animated];
  23. // Configure the view for the selected state
  24. }
  25. @end