30 lines
512 B
Objective-C
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
|