Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeAttentionTableViewCell.h

24 lines
628 B
C
Raw Normal View History

2022-03-02 19:18:08 +08:00
//
// 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