Files
peko-ios/YuMi/Modules/YMNewHome/View/CustomView/XPHomeRecommendOtherRoomView.h
2023-09-12 18:08:46 +08:00

25 lines
653 B
Objective-C

//
// XPHomeRecommendOtherRoomView.h
// xplan-ios
//
// Created by 冯硕 on 2022/3/3.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPHomeRecommendOtherRoomView, HomeMenuSourceModel;
@protocol XPHomeRecommendOtherRoomViewDelegate <NSObject>
///点击了进入房间
- (void)xPHomeRecommendOtherRoomView:(XPHomeRecommendOtherRoomView *)view didClickEnterRoom:(HomeMenuSourceModel *)model;
@end
@interface XPHomeRecommendOtherRoomView : UIView
///房间信息
@property (nonatomic,strong) HomeMenuSourceModel *roomInfo;
///代理
@property (nonatomic,weak) id<XPHomeRecommendOtherRoomViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END