41 lines
1.1 KiB
Objective-C
41 lines
1.1 KiB
Objective-C
//
|
|
// YMMoreMenuProtocol.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/12/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class XPRoomMoreItemModel, RoomInfoModel, XPReleaseRadioModel, XPNobleTrumpetModel;
|
|
@protocol XPMoreMenuProtocol <NSObject>
|
|
|
|
///更多菜单要展示的内容
|
|
- (void)getMoreMenuDataSuccess:(NSArray<XPRoomMoreItemModel *> *)list;
|
|
///开启房间礼物值成功
|
|
- (void)openRoomGiftValueSuccess;
|
|
///关闭房间礼物值成功
|
|
- (void)closeRoomGiftValueSuccess;
|
|
///更新房间信息 成功 公屏的开启和关闭
|
|
- (void)updateRoomMessageScreenStateSuccess:(RoomInfoModel * )roomInfo;
|
|
///开启相亲成功
|
|
- (void)openRoomDatingSuccess;
|
|
///关闭相亲成功
|
|
- (void)closeRoomDatingSuccess;
|
|
///获取房间广播信息成功
|
|
- (void)getReleaseRadioSuccess:(XPReleaseRadioModel *)model;
|
|
///获取房间VIP喇叭成功
|
|
- (void)getTrumpetSuccess:(XPNobleTrumpetModel *)model;
|
|
///结束个播跨房PK回调
|
|
- (void)endAnchorPkSuccess:(BOOL)success msg:(NSString *)msg;
|
|
///清空公屏成功
|
|
- (void)cleanScreenSuccess;
|
|
|
|
- (void)cancelMatchRandomPKSuccess;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|