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

25 lines
607 B
Objective-C

//
// XPHomeHotRoomTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/2/21.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPHomeHotRoomTableViewCell, HomeRecommendRoomModel;
@protocol XPHomeHotRoomTableViewCellDelegate <NSObject>
- (void)xPHomeHotRoomTableViewCell:(XPHomeHotRoomTableViewCell *)view didClickItem:(HomeRecommendRoomModel *)roomInfo;
@end
@interface XPHomeHotRoomTableViewCell : UITableViewCell
@property (nonatomic,strong) NSArray *hotAnchorList;
///代理
@property (nonatomic,weak) id<XPHomeHotRoomTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END