uploadFileRecordViewController.h 777 B

1234567891011121314151617181920212223242526272829
  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. #import "uploadImageOrVideoViewController.h"
  12. #import "nasDownloadFileManager.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface uploadFileRecordViewController : BaseViewController
  15. //
  16. @property (nonatomic, assign) BOOL isUploadingType;//上传页面进入
  17. -(void)gotoUploadFile:(NSMutableArray*)indexPathsForSelectedItems;
  18. @property (nonatomic, assign) BOOL isDownloadingType;//下载页面进入
  19. -(void)gotoDownloadFile:(NSMutableArray*)selectedItems;
  20. @property (nonatomic, assign) NSInteger isReceiveType;//h5分享页面进入
  21. @end
  22. NS_ASSUME_NONNULL_END