PhotoPreviewViewController.h 441 B

12345678910111213141516171819
  1. //
  2. // PhotoPreviewViewController.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/11.
  6. //
  7. #import "BaseViewController.h"
  8. #import "TZImageManager.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PhotoPreviewViewController : BaseViewController
  11. @property (strong, nonatomic) NSMutableArray *assets;
  12. @property (nonatomic, assign) NSInteger currentIndex;///< Index of the photo user click / 用户点击的图片的索引
  13. @end
  14. NS_ASSUME_NONNULL_END