uploadImageOrVideoViewController.h 497 B

12345678910111213141516171819202122232425
  1. //
  2. // uploadImageOrVideoViewController.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/9.
  6. //
  7. #import "BaseViewController.h"
  8. #import <AssetsLibrary/AssetsLibrary.h>
  9. #import "TZImageManager.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface uploadImageOrVideoViewController : BaseViewController
  12. //选择过滤
  13. @property (nonatomic, strong) NSPredicate *selectionFilter;
  14. //选中的项 TZAssetModel
  15. @property (nonatomic, strong) NSMutableArray *indexPathsForSelectedItems;
  16. @end
  17. NS_ASSUME_NONNULL_END