萤石云 iOSSDK,移植跨平台相关工程
JLChen
2021-07-09 1a27ef122fb0a2b9f1c19dd609897728b795df5d
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年 Ezviz. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "EZDeviceInfo.h"
 
@interface DeviceListCell : UITableViewCell
{
    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 (weak, nonatomic) IBOutlet UIButton *videoTalkButton;
@property (nonatomic, weak) UIViewController *parentViewController;
@property (nonatomic) BOOL isShared;
 
- (void)setDeviceInfo:(EZDeviceInfo *)deviceInfo;
 
@end