123456789101112131415161718192021222324 |
- //
- // receiveView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/5/23.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface receiveView : UIView
- @property (nonatomic, assign) NSInteger isReceiveType;//h5分享页面进入
- @property (nonatomic,assign) BOOL isEditType;
- @property (nonatomic,assign) BOOL isSelectAllType;
- @property (nonatomic,strong) NSMutableArray *selectModelArr;
- @property (nonatomic,copy) void (^didLongPressClick)(void);
- - (void)getAllDataFun;
- #pragma mark 单个点击选中后删除
- - (void)deleteModelOneByOneFun;
- @end
- NS_ASSUME_NONNULL_END
|