12345678910111213141516171819202122232425262728293031323334 |
- //
- // TrainDetailCell.m
- // jiaPei
- //
- // Created by apple on 2017/3/10.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import "TrainDetailCell.h"
- @implementation TrainDetailCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- self.backgroundColor = backGroundColor;
- self.contentView.backgroundColor = backGroundColor;
- _titleLabel.textColor = kTitleColor;
- _contentLabel.textColor = contentTextColor;
- _titleLabel.font = [UIFont scaleSize:18];
- _contentLabel.font = [UIFont scaleSize:15];
-
- [_orbitBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
- [_commentBtn borderColor:RQ_MAIN_COLOR width:1 cornorRadius:5];
-
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|