| 1234567891011121314151617181920 |
- //
- // PickerGroupTableViewCell.h
- // DKAssetsPickerDemo
- //
- //
- #import <UIKit/UIKit.h>
- @class DKPhotoPickerGroup;
- @interface DKPhotoPickerGroupTableViewCell : UITableViewCell
- /**
- * 赋值xib
- */
- @property (nonatomic , strong) DKPhotoPickerGroup *group;
- + (instancetype) instanceCell;
- @end
|