Files
peko-ios/YuMi/Modules/YMRoom/View/RoomRecommend/XPRoomRecommendView.h
2023-09-22 17:43:21 +08:00

35 lines
673 B
Objective-C

//
// YMRoomRecommendView.h
// YUMI
//
// Created by YUMI on 2022/4/28.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol XPRoomRecommendViewDelegate <NSObject>
@optional
///举报房间
- (void)xPRoomRecommendViewReport;
///最小化房间
- (void)xPRoomRecommendViewMiniRoom;
///退出房间
- (void)xPRoomRecommendViewExitRoom;
///分享
- (void)xPRoomRecommendViewShare;
///跳转到房间
- (void)xPRoomRecommendViewJumpToRoom:(NSString *)roomUid;
@end
@interface XPRoomRecommendView : UIView
@property (nonatomic, strong) NSMutableArray *roomList;
@property (nonatomic, weak) id<XPRoomRecommendViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END