萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-08-06 edc0f0a0439f9e5a11593e21a4779fa6dbcbe49d
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
//
//  CameraListCell.h
//  EZOpenSDKDemo
//
//  Created by DeJohn Dong on 15/10/27.
//  Copyright © 2015年 hikvision. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "EZDeviceInfo.h"
#import "EZCameraInfo.h"
 
@interface CameraListCell : UITableViewCell
{
//    EZCameraInfo *_cameraInfo;
    EZDeviceInfo *_deviceInfo;
}
 
@property (nonatomic, weak) IBOutlet UIImageView *cameraImageView;
@property (nonatomic, weak) IBOutlet UIButton *playButton;
@property (nonatomic, weak) IBOutlet UIButton *recordButton;
@property (nonatomic, weak) IBOutlet UIButton *messageButton;
@property (nonatomic, weak) IBOutlet UIButton *settingButton;
@property (nonatomic, weak) IBOutlet UILabel *nameLabel;
@property (nonatomic, weak) IBOutlet UIImageView *offlineIcon;
@property (nonatomic, weak) UIViewController *parentViewController;
 
- (void)setDeviceInfo:(EZDeviceInfo *)deviceInfo;
 
@end