filePathCreatPopView.h 487 B

1234567891011121314151617181920
  1. //
  2. // filePathCreatPopView.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/12/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface filePathCreatPopView : UIView
  10. @property(nonatomic,assign) NSInteger curType;// 1上传 2是备份
  11. @property(nonatomic,copy) NSArray *outSizeArr;//磁盘数据
  12. @property(nonatomic,copy) NSString *defaultSaveDiskStr;
  13. @property (nonatomic,copy) void (^didClickOkBut)(NSString* folderName,NSString* DiskPathStr);
  14. @end
  15. NS_ASSUME_NONNULL_END