12345678910111213141516 |
- //
- // CollectionViewCell.h
- // 多选图片
- //
- // Created by holier_zyq on 2016/10/24.
- // Copyright © 2016年 holier_zyq. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface CollectionViewCell : UICollectionViewCell
- @property (nonatomic ,strong) UIImageView *imagev;
- @property (nonatomic ,strong) UIButton *deleteButton;
- @end
|