JLChen
2021-11-26 f26dfd48aa7bf4c194863cc3b3f47d38bc8a2d57
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
31
//
//  HDLSiriSceneListCell.h
//  HdlSmartIoT
//
//  Created by 陈嘉乐 on 2021/11/17.
//
 
#import <UIKit/UIKit.h>
#import <Intents/Intents.h>
#import <IntentsUI/IntentsUI.h>
#import "HDLRunSceneIntent.h"
#import "HDLSiriSceneModel.h"
 
//#import <HDLSmartKit/HDLSceneModel.h>
 
 
NS_ASSUME_NONNULL_BEGIN
 
@interface HDLSiriSceneListCell : UITableViewCell
 
@property (nonatomic, strong) UIView        *bgView;//背景View
@property (nonatomic, strong) UILabel       *titleLabel;//场景标题
@property (nonatomic, strong) INUIAddVoiceShortcutButton API_AVAILABLE(ios(12.0)) *shortcutButton;//快捷指令按钮
 
@property (nonatomic, strong) HDLSiriSceneModel  *model;//场景model
 
-(void)initModel:(HDLSiriSceneModel *)model intent:(HDLRunSceneIntent*)intent API_AVAILABLE(ios(12.0));
 
@end
 
NS_ASSUME_NONNULL_END