123456789101112131415161718192021222324252627 |
- //
- // PlanCollectionCell.h
- // jiaPei
- //
- // Created by apple on 16/3/28.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PlanCollectionCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *backImageView;
- @property (weak, nonatomic) IBOutlet UIImageView *headImgView;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *kmLabel;
- @property (weak, nonatomic) IBOutlet UILabel *countLabel;
- @property (nonatomic, assign) BOOL isCanSelect;
- @property (nonatomic, assign) BOOL isSelected;
- @end
|