TrainDetailCell.m 923 B

1234567891011121314151617181920212223242526272829303132333435
  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. _mileage_label.textColor = contentTextColor;
  19. _mileage_label.font = [UIFont scaleSize:18];
  20. [_orbitBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
  21. [_commentBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
  22. }
  23. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  24. [super setSelected:selected animated:animated];
  25. // Configure the view for the selected state
  26. }
  27. @end