Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeAttentionTableViewCell.h
2022-03-04 19:54:17 +08:00

24 lines
628 B
Objective-C

//
// XPHomeAttentionTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/3/2.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPHomeAttentionTableViewCell, HomeLiveRoomModel;
@protocol XPHomeAttentionTableViewCellDelegate <NSObject>
///点击了某个item
- (void)xPHomeAttentionTableViewCell:(XPHomeAttentionTableViewCell *)view didClickItem:(HomeLiveRoomModel *)model;
@end
@interface XPHomeAttentionTableViewCell : UITableViewCell
@property (nonatomic,strong) NSArray *attentionList;
///代理
@property (nonatomic,weak) id<XPHomeAttentionTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END