Files
yinmeng-ios/xplan-ios/Main/Room/UIManager/MenuManager/XPRoomMenuManager.m
2021-10-14 21:10:04 +08:00

30 lines
512 B
Objective-C

//
// XPRoomMenuManager.m
// xplan-ios
//
// Created by 冯硕 on 2021/10/12.
//
#import "XPRoomMenuManager.h"
#import "XPRoomBottomMenuView.h"
@interface XPRoomMenuManager ()
///
@property (nonatomic,strong) XPRoomBottomMenuView *menuView;
@end
@implementation XPRoomMenuManager
- (UIView *)containerView {
return self.menuView;
}
#pragma mark - Getters And Setters
- (XPRoomBottomMenuView *)menuView {
if (!_menuView) {
_menuView = [[XPRoomBottomMenuView alloc] init];
}
return _menuView;
}
@end