PlanCollectionCell.m 653 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // PlanCollectionCell.m
  3. // jiaPei
  4. //
  5. // Created by apple on 16/3/28.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import "PlanCollectionCell.h"
  9. @implementation PlanCollectionCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. self.backgroundColor = backGroundColor;
  13. [_headImgView setContentMode:UIViewContentModeScaleAspectFit];
  14. _backImageView.layer.masksToBounds = YES;
  15. if (kSize.width < 350.0) {
  16. _timeLabel.font = [UIFont systemFontOfSize:15];
  17. _kmLabel.font = [UIFont systemFontOfSize:14];
  18. _countLabel.font = [UIFont scaleSize:14];
  19. }
  20. }
  21. @end