23 lines
542 B
Objective-C
23 lines
542 B
Objective-C
//
|
|
// YMRoomBottomMenuView.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/10/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "RoomGuestDelegate.h"
|
|
#import "XPArrangeMicViewController.h"
|
|
#import "XPFreeGiftModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomMenuContainerView : UIView<RoomGuestDelegate>
|
|
@property (nonatomic,strong) XPFreeGiftModel *freeModel;
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
-(void)showInputView:(NSString *)text;
|
|
- (void)menuResignFirstResponder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|