Files
yinmeng-ios-store/yinmeng-ios/yinmeng-ios/Main/YinMeng/Room/View/CHRoomHostDelegate.h
2023-12-01 18:18:35 -08:00

30 lines
618 B
Objective-C

//
// CHCHRoomHostDelegate.h
// yinmeng-ios
//
// Created by 触海 on 2023/12/1.
//
#import <UIKit/UIKit.h>
#import "MicroQueueProtocol.h"
#import "CHRoomAnimationProtocol.h"
@class RoomInfoModel, UserInfoModel;
NS_ASSUME_NONNULL_BEGIN
@protocol CHRoomHostDelegate <NSObject, MicroQueueProtocol,CHRoomAnimationProtocol>
// 获取房间信息
- (RoomInfoModel *)getRoomInformation;
// 获取用户信息
- (UserInfoModel *)getUserInformation;
/// 退出房间
- (void)exitCurrentRoom;
/// 获取当前的导航控制器
- (UINavigationController *)getCurrentNavigationController;
@end
NS_ASSUME_NONNULL_END