12345678910111213141516171819 |
- //
- // fileTransferPopView.h
- // 隐私保护
- //
- // Created by xd h on 2023/12/27.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface fileTransferPopView : UIView
- @property (nonatomic,assign) NSInteger fileTransferType;// 1 上传 2下载
- @property (nonatomic,copy) void (^didClickBut)(NSInteger tag);// 11 图片上传 12 图片下载 21视频上传 22 视频下载
- @end
- NS_ASSUME_NONNULL_END
|