TrainHoursSubTableViewCell.m 601 B

123456789101112131415161718192021222324252627
  1. //
  2. // TrainHoursSubTableViewCell.m
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2019/7/29.
  6. // Copyright © 2019 JCZ. All rights reserved.
  7. //
  8. #import "TrainHoursSubTableViewCell.h"
  9. @implementation TrainHoursSubTableViewCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. self.backgroundColor = backGroundColor;
  13. _thoryHoursLabel.textColor = kTitleColor;
  14. _classHoursLabel.textColor = subTitleColor;
  15. // Initialization code
  16. }
  17. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  18. [super setSelected:selected animated:animated];
  19. // Configure the view for the selected state
  20. }
  21. @end