receiveView.h 586 B

123456789101112131415161718192021222324
  1. //
  2. // receiveView.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/5/23.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface receiveView : UIView
  10. @property (nonatomic, assign) NSInteger isReceiveType;//h5分享页面进入
  11. @property (nonatomic,assign) BOOL isEditType;
  12. @property (nonatomic,assign) BOOL isSelectAllType;
  13. @property (nonatomic,strong) NSMutableArray *selectModelArr;
  14. @property (nonatomic,copy) void (^didLongPressClick)(void);
  15. - (void)getAllDataFun;
  16. #pragma mark 单个点击选中后删除
  17. - (void)deleteModelOneByOneFun;
  18. @end
  19. NS_ASSUME_NONNULL_END