123456789101112131415161718192021 |
- //
- // YOUPAILZLiveManageCell.h
- // VQU
- //
- // Created by CY on 2021/8/25.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILZLiveManageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZLiveManageCell : UITableViewCell
- @property (nonatomic,copy) void (^youpaiprepealBlock)(YOUPAILZLiveManageModel *model,NSIndexPath *indexPath); //撤销回调
- - (void)youpaifreloadWithModel:(YOUPAILZLiveManageModel *)model indexPath:(NSIndexPath *)indexPath;
- @end
- NS_ASSUME_NONNULL_END
|