CNLiveMineCell.h
678 Bytes
//
// CNLiveMineCell.h
// CNLiveMineModule
//
// Created by 153993236@qq.com on 11/12/2019.
// Copyright © 2019 153993236@qq.com. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CNLiveMineModel.h"
NS_ASSUME_NONNULL_BEGIN
@class CNLiveMineCell;
static NSString * const kCNLiveMineCell = @"CNLiveMineCell";
@protocol CNLiveMineCellDelegate <NSObject>
@optional
- (void)cell:(CNLiveMineCell *)cell clickedButtonWithType:(CNLiveMineCellType)type tag:(NSInteger)tag;
@end
@interface CNLiveMineCell : UITableViewCell
@property (nonatomic, strong) CNLiveMineModel *model;
@property (nonatomic, weak) id<CNLiveMineCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END