1234567891011121314151617181920212223242526272829303132 |
- //
- // PhotoPreviewViewController.h
- // 隐私保护
- //
- // Created by xd h on 2023/11/11.
- //
- #import "BaseViewController.h"
- #import "TZImageManager.h"
- #import "TZAssetModel+imageData.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PhotoPreviewViewController : BaseViewController
- @property (strong, nonatomic) NSMutableArray *assets;
- @property (nonatomic, assign) NSInteger currentIndex;///< Index of the photo user click / 用户点击的图片的索引
- //选中的项 TZAssetModel
- @property (nonatomic, strong) NSMutableArray *indexPathsForSelectedItems;
- //最多选择项
- //@property (nonatomic, assign) NSInteger maximumNumberOfSelection;
- //最少选择项
- @property (nonatomic, assign) NSInteger minimumNumberOfSelection;
- @property (nonatomic,copy) NSString *availableStorage;
- @property (nonatomic,assign) BOOL isPhotoType;//是否为选择图片类型
- //更新选择状态
- @property (nonatomic,copy) void (^changeSelectIndex)(NSMutableArray *indexPathsForSelectedItems);
- @end
- NS_ASSUME_NONNULL_END
|