24 lines
628 B
C
24 lines
628 B
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
|