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
| //
| // EZSDK.h
| // EZSDK
| //
| // Created by 陈嘉乐 on 2021/1/27.
| //
|
| #import <Foundation/Foundation.h>
|
| @interface EZSDK : NSObject
| /**
| 初始化SDK
| */
| +(void)libInit;
|
| /**
| 回放播放历史
| */
| +(void)playBackVideo:(NSObject*)deviceInfo;
|
| /**
| 登录
| */
| +(void)login;
|
| /**
| 直接跳转到萤石摄像头列表
| */
| +(void)go2EZvizMonitor;
| @end
|
|