123456789101112131415161718192021222324252627282930313233 |
- //
- // PlanCollectionCell.m
- // jiaPei
- //
- // Created by apple on 16/3/28.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import "PlanCollectionCell.h"
- @implementation PlanCollectionCell
- - (void)awakeFromNib {
- [super awakeFromNib];
-
- self.backgroundColor = backGroundColor;
-
- [_headImgView setContentMode:UIViewContentModeScaleAspectFit];
-
- _backImageView.layer.masksToBounds = YES;
-
-
- if (kSize.width < 350.0) {
-
- _timeLabel.font = [UIFont systemFontOfSize:15];
- _kmLabel.font = [UIFont systemFontOfSize:14];
- _countLabel.font = [UIFont scaleSize:14];
- }
-
-
- }
- @end
|