fileTransferPopView.h 412 B

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