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
//
//  Copyright © 2020 dahua. All rights reserved.
//
 
 
#import "LCDeviceVideoManager.h"
#import "LCUIKit.h"
 
NS_ASSUME_NONNULL_BEGIN
 
typedef enum : NSUInteger {
    LCDeviceSettingStyleMainPage,//设定主页
    LCDeviceSettingStyleVersionUp,//设定版本升级
    LCDeviceSettingStyleDeploy,//设定布防详情
    LCDeviceSettingStyleDeviceDetailInfo,//设备详细信息
    LCDeviceSettingStyleDeviceNameEdit,//名称设定
    LCDeviceSettingStyleDeviceSnap//缩略图设定
} LCDeviceSettingStyle;
 
@interface LCDeviceSettingPersenter : LCBasicPresenter<UITableViewDelegate,UITableViewDataSource>
 
@property (nonatomic)LCDeviceSettingStyle style;
 
@property (nonatomic)BOOL needReload;
 
@property (strong, nonatomic) LCDeviceVideoManager *manager;
 
@property (strong, nonatomic) NSString *deviceName;
 
@property (nonatomic) BOOL endEdit;
 
/**
 更改设备名称
 */
- (void)modifyDevice;
 
/// 删除设备
- (void)deleteDevice;
 
/// 获取最新的设备信息
- (void)reloadDeviceInfo;
 
/// 停止刷新
- (void)stopCheckUpdate;
 
 
 
@end
 
NS_ASSUME_NONNULL_END