uploadFileRecordViewController.h 698 B

12345678910111213141516171819202122232425262728
  1. //
  2. // uoloadFileRecordViewController.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/13.
  6. //
  7. #import "BaseViewController.h"
  8. #import "TZImageManager.h"
  9. #import "TZAssetModel+imageData.h"
  10. #import "downloadThumbnailManager.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface uploadFileRecordViewController : BaseViewController
  13. //
  14. @property (nonatomic, assign) BOOL isUploadingType;//上传页面进入
  15. -(void)gotoUploadFile:(NSMutableArray*)indexPathsForSelectedItems;
  16. @property (nonatomic, assign) BOOL isDownloadingType;//下载页面进入
  17. -(void)gotoDownloadFile:(NSMutableArray*)selectedItems;
  18. @property (nonatomic, assign) NSInteger isReceiveType;//h5分享页面进入
  19. @end
  20. NS_ASSUME_NONNULL_END