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
| //
| // Copyright © 2019 dahua. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| #import "LCUIKit.h"
| #import "LCDeviceListPresenter.h"
| NS_ASSUME_NONNULL_BEGIN
|
| typedef void(^LCDeviceListCellClickBlock)(LCDeviceInfo * info,NSInteger channelIndex,NSInteger index);
|
| @interface LCDeviceListCell : UITableViewCell
|
| /// 设备信息模型
| @property (copy, nonatomic) LCDeviceInfo *deviceInfo;
|
| /// presenter
| @property (strong, nonatomic) LCDeviceListPresenter *presenter;
|
| /// presenter
| @property (copy, nonatomic) LCDeviceListCellClickBlock resultBlock;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|