JLChen
2021-11-04 1443556e9ccb1a19ed8e6710c16c8adc4d4f4fb3
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
//
//  Copyright © 2019 dahua. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface UINavigationController (Push)
 
/**
 跳转到模式选择页面
 */
- (void)pushToModeSelect;
 
/**
 跳转到用户账号登录
 */
- (void)pushToUserModeLogin;
 
/**
 跳转到用户账号登录
 */
- (void)pushToUserModeRegist;
 
/**
 跳转到乐橙主页
 */
- (void)pushToLeChanegMainPage;
 
/**
 跳转到直播预览
 */
- (void)pushToLivePreview;
 
/**
 跳转用户模式介绍
 */
- (void)pushToUserModeIntroduce;
 
/**
 跳转管理员模式介绍
 */
- (void)pushToManagerModeIntroduce;
 
/**
 跳转到全部录像界面 0:云录像 1:本地录像
 */
- (void)pushToVideotapeListPageWithType:(NSInteger)type;
 
/**
 跳转录像播放
 */
- (void)pushToVideotapePlay;
 
/**
 跳转云服务
 */
- (void)pushToCloudService;
 
/**
 跳转设置
 */
- (void)pushToDeviceSettingPage;
 
/**
 跳转设置移动检测
 */
- (void)pushToDeviceSettingDeploy;
 
/**
跳转设置网络
*/
- (void)pushToWifiSettings:(NSString *)deviceId;
 
/**
 跳转设置设备详情
 */
- (void)pushToDeviceSettingDeviceDetail;
 
/**
 跳转设置设备升级
 */
- (void)pushToDeviceSettingVersion;
 
/**
 跳转设置修改名称
 */
- (void)pushToDeviceSettingEditName;
 
/**
 跳转设置修改缩略图
 */
- (void)pushToDeviceSettingEditSnap;
 
/**
 跳转添加设备扫描页面
 */
- (void)pushToAddDeviceScanPage;
 
/**
 跳转添加设备输入验证码
 */
- (void)pushToSerialNumberPage;
 
/**
 跳转产品选择页面页面
 */
- (void)pushToProductChoosePage;
 
/**
 从导航栏移除
 
 @param VC 需要移除的控制器
 */
- (void)removeViewController:(UIViewController *)VC;
 
 
 
@end
 
NS_ASSUME_NONNULL_END