27 lines
625 B
Objective-C
27 lines
625 B
Objective-C
//
|
|
// XPMineMatchTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineItemModel, XPMineMatchTableViewCell;
|
|
@protocol XPMineMatchTableViewCellDelegate <NSObject>
|
|
|
|
///选择了某个item
|
|
- (void)xPMineMatchTableViewCell:(XPMineMatchTableViewCell *)cell didSelectItem:(XPMineItemModel *)item;
|
|
|
|
@end
|
|
|
|
@interface XPMineMatchTableViewCell : UITableViewCell
|
|
///数据
|
|
@property (nonatomic,strong) NSArray<XPMineItemModel *> *datasource;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPMineMatchTableViewCellDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|