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