CNLiveRootControllerManager.m
1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// CNLiveRootControllerManager.m
// CNLiveMineModule
//
// Created by 153993236@qq.com on 11/12/2019.
// Copyright (c) 2019 153993236@qq.com. All rights reserved.
//
#import "CNLiveRootControllerManager.h"
@implementation CNLiveRootControllerManager
/**
* 设置主页面
*/
+ (void)enterMainUI{
// 判断是否展示引导页
if (@"是否展示引导页") {
}else{
if(@"是否登录"){
// 设置TabBar面
[self enterTabBarUI];
}else{
// 设置登录页面
[self enterLoginUI];
}
}
}
/**
* 设置TabBar面
*/
+ (void)enterTabBarUI{
for (UIView *view in [UIApplication sharedApplication].delegate.window.subviews) {
[view removeFromSuperview];
}
[UIApplication sharedApplication].delegate.window.rootViewController = nil;
UITabBarController *tabBar = [[UITabBarController alloc]init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:tabBar];
[UIApplication sharedApplication].delegate.window.rootViewController = nav;
}
/**
* 设置登录页面
*/
+ (void)enterLoginUI{
for (UIView *view in [UIApplication sharedApplication].delegate.window.subviews) {
[view removeFromSuperview];
}
[UIApplication sharedApplication].delegate.window.rootViewController = nil;
// CNLiveLoginController *login = [[CNLiveLoginController alloc]init];
// UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:login];
// [UIApplication sharedApplication].delegate.window.rootViewController = nav;
}
@end