1234567891011121314151617181920212223242526 |
- //
- // 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;
- @end
- NS_ASSUME_NONNULL_END
|