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
| //
| // HDLEZVideoDoorMsgCell.h
| // EZSDK
| //
| // Created by Davin on 2023/6/15.
| //
|
| #import <UIKit/UIKit.h>
|
| NS_ASSUME_NONNULL_BEGIN
|
| @interface HDLEZVideoDoorMsgCell : UITableViewCell
|
| /// 配置门锁历史消息记录
| /// - Parameters:
| /// - title: 消息标题
| /// - deviceStatus: 设备状态
| /// - time: 消息生成时间
| /// - messageUrl: 消息图片
| - (void)configMessageInfoWithTitle:(NSString *)title deviceStatus:(NSString *)deviceStatus messageTime:(NSString *)time messageImage:(NSString *)messageUrl;
|
| /// 是否展示分割线
| /// - Parameter isShow: 是否展示
| - (void)showSpearator:(BOOL)isShow;
|
| @end
|
| NS_ASSUME_NONNULL_END
|
|