萤石云 iOSSDK,移植跨平台相关工程
Davin
2023-06-15 011b0cc918bfa0e36a9ad4a0f45c18b801815920
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  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;
 
@end
 
NS_ASSUME_NONNULL_END