| 12345678910111213141516171819 |
- //
- // PhotoPreviewViewController.h
- // 隐私保护
- //
- // Created by xd h on 2023/11/11.
- //
- #import "BaseViewController.h"
- #import "TZImageManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PhotoPreviewViewController : BaseViewController
- @property (strong, nonatomic) NSMutableArray *assets;
- @property (nonatomic, assign) NSInteger currentIndex;///< Index of the photo user click / 用户点击的图片的索引
- @end
- NS_ASSUME_NONNULL_END
|