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
//
//  EZLivePlayViewController.h
//  EZOpenSDKDemo
//
//  Created by DeJohn Dong on 15/10/28.
//  Copyright © 2015年 Ezviz. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "EZDeviceInfo.h"
 
@interface EZLivePlayViewController : UIViewController
 
@property (nonatomic, copy) NSString *url;
@property (nonatomic, strong) EZDeviceInfo *deviceInfo;
@property (nonatomic, copy) NSString *hubCoDevSerial;
@property (nonatomic) NSInteger cameraIndex;
 
@property (nonatomic, copy) NSString *deviceSerial;//设备序列号
@property (nonatomic, copy) NSString *deviceId;//设备id
 
 
- (void)imageSavedToPhotosAlbum:(UIImage *)image
       didFinishSavingWithError:(NSError *)error
                    contextInfo:(void *)contextInfo;
 
@end