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
//
//  Copyright © 2020 dahua. All rights reserved.
//
 
#import "LCLivePreviewPresenter.h"
 
NS_ASSUME_NONNULL_BEGIN
 
@interface LCLivePreviewPresenter (Control)
 
/**
 获取中间控制视图的子模块
 
 @return 子模块列表
 */
-(NSMutableArray *)getMiddleControlItems;
 
/**
 获取底部控制视图的子模块
 
 @return 子模块列表
 */
-(NSMutableArray *)getBottomControlItems;
 
//全屏
- (void)onFullScreen:(LCButton *)btn;
 
//点击音频
- (void)onAudio:(LCButton *)btn;
 
//点击对讲
- (void)onAudioTalk:(LCButton *)btn;
 
//点击对讲
- (void)onPlay:(nullable LCButton *)btn;
 
//点击云台
- (void)onPtz:(LCButton *)btn;
 
//点击抓图
- (void)onSnap:(LCButton *)btn;
 
//点击录制
- (void)onRecording:(LCButton *)btn;
 
//点击清晰度
- (void)onQuality:(LCButton *)btn;
 
- (void)stopPlay;
 
- (void)startPlay;
 
/**
 点击锁定全屏
 */
-(void)onLockFullScreen:(LCButton *)btn;
 
@end
 
NS_ASSUME_NONNULL_END