12345678910111213141516171819202122232425 |
- //
- // SelectCell.h
- // jiaPeiC
- //
- // Created by apple on 16/7/1.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SelectCell : UICollectionViewCell
- @property (nonatomic, assign) BOOL isDelete;
- @property (nonatomic, retain) UIImageView *imageView;
- @property (nonatomic, retain) UIView *selectView;
- @property (nonatomic, retain) UILabel *timeLabel;
- @property (nonatomic, retain) UILabel *kemuLabel;
- @property (nonatomic, retain) UILabel *styleLabel;
- @end
|