28 lines
601 B
Objective-C
28 lines
601 B
Objective-C
//
|
|
// XPRoomViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomViewController : MvpViewController
|
|
|
|
/** XPRoomViewController 不允许外部 init ,请通过该方法启动房间。
|
|
* @params roomUid 房主uid
|
|
* @params viewController 启动方
|
|
*/
|
|
+ (BOOL)openRoom:(NSString*)roomUid viewController:(UIViewController*)viewController;
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
+ (instancetype)new NS_UNAVAILABLE;
|
|
- (id)copy NS_UNAVAILABLE;
|
|
- (id)mutableCopy NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|