// // NSObject+AlbumItem.h // gengmei_flutter_plugin // // Created by Apple on 2019/9/9. // #import #import @interface AlbumItem : NSObject /// 相册 @property (nonatomic, strong) PHAssetCollection *collection; /// 第一个相片 @property (nonatomic, strong) PHAsset *firstAsset; /// 第一个相片 @property (nonatomic, strong) PHFetchResult *assets; /// 相册名 @property (nonatomic, copy) NSString *collectionTitle; /// 总数 @property (nonatomic) int collectionNumber; /// 选中的图片 @property (nonatomic, strong) NSMutableArray *selectRows; @end