123456789101112131415161718192021222324252627 |
- //
- // TrainHoursSubTableViewCell.m
- // jiaPei
- //
- // Created by 张嵘 on 2019/7/29.
- // Copyright © 2019 JCZ. All rights reserved.
- //
- #import "TrainHoursSubTableViewCell.h"
- @implementation TrainHoursSubTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.backgroundColor = backGroundColor;
- _thoryHoursLabel.textColor = kTitleColor;
- _classHoursLabel.textColor = subTitleColor;
- // Initialization code
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|