31 lines
489 B
Objective-C
31 lines
489 B
Objective-C
//
|
|
// BaseUIManager.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import "XPRoomBackUIManager.h"
|
|
#import "XPRoomBackUIView.h"
|
|
@interface XPRoomBackUIManager ()
|
|
///
|
|
@property (nonatomic,strong) XPRoomBackUIView *roomBackView;
|
|
@end
|
|
|
|
@implementation XPRoomBackUIManager
|
|
|
|
- (UIView *)containerView {
|
|
return self.roomBackView;
|
|
}
|
|
|
|
|
|
|
|
- (XPRoomBackUIView *)roomBackView {
|
|
if (!_roomBackView) {
|
|
_roomBackView = [[XPRoomBackUIView alloc] init];
|
|
}
|
|
return _roomBackView;
|
|
}
|
|
|
|
@end
|