PlanCollectionCell.h 614 B

123456789101112131415161718192021222324252627
  1. //
  2. // PlanCollectionCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 16/3/28.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PlanCollectionCell : UICollectionViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *backImageView;
  11. @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *kmLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *countLabel;
  15. @property (nonatomic, assign) BOOL isCanSelect;
  16. @property (nonatomic, assign) BOOL isSelected;
  17. @end