25 lines
607 B
Objective-C
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
|