Files
yinmeng-ios/xplan-ios/Main/Mine/View/Cell/XPMineMatchTableViewCell.h

27 lines
625 B
C
Raw Normal View History

2021-09-16 19:30:22 +08:00
//
// 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