22 lines
427 B
Objective-C
22 lines
427 B
Objective-C
//
|
|
// XPRoomBottomMenuView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "RoomGuestDelegate.h"
|
|
#import "XPArrangeMicViewController.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomMenuContainerView : UIView<RoomGuestDelegate>
|
|
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
|
|
- (void)menuResignFirstResponder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|