uploadFileRecordBodyView.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // uploadFileRecordBodyView.h
  3. // 隐私保护
  4. //
  5. // Created by xd h on 2023/11/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "uploadFileRecordTableViewHeadView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. //此文件弃用!!!!!
  11. @interface uploadFileRecordBodyView : UIView
  12. @property (nonatomic,strong) UIScrollView *bgScrollV;
  13. @property (nonatomic,strong) uploadFileRecordTableViewHeadView *leftHeadView;
  14. @property (nonatomic,strong) uploadFileRecordTableViewHeadView *midHeadView;
  15. @property (nonatomic,strong) uploadFileRecordTableViewHeadView *rightHeadView;
  16. //点击
  17. @property (nonatomic,copy) void (^didScrollFun)(NSInteger index);
  18. @property(nonatomic,assign) NSInteger selectIndex;// 从1开始
  19. @property (nonatomic, weak) NSMutableArray *allDataArr;
  20. @property (nonatomic,assign) BOOL isEditType;
  21. @property (nonatomic,assign) BOOL isSelectAllType;
  22. @property (nonatomic,copy) void (^didLongPressClick)(void);
  23. - (void)RefreshDataWithUploadingArr:(NSMutableArray* _Nullable)uploadingArr withDoneArr:(NSMutableArray* _Nullable)doneArr withfailArr:(NSMutableArray* _Nullable)failArr;
  24. #pragma mark 单个点击选中后删除
  25. - (void)deleteModelOneByOneFun;
  26. @end
  27. NS_ASSUME_NONNULL_END