| 12345678910111213141516 |
- //
- // PickerCollectionViewCell.h
- // 相机
- //
- //
- #import <UIKit/UIKit.h>
- @class UICollectionView;
- @interface DKPhotoPickerCollectionViewCell : UICollectionViewCell
- + (instancetype) cellWithCollectionView : (UICollectionView *) collectionView cellForItemAtIndexPath:(NSIndexPath *) indexPath;
- @property (nonatomic , strong) UIImage *cellImage;
- @end
|