// // HDLSiriSceneListCell.h // HdlSmartIoT // // Created by 陈嘉乐 on 2021/11/17. // #import #import #import #import "HDLSiriShortcutModel.h" #import "HDLRunSceneIntent.h" //#import NS_ASSUME_NONNULL_BEGIN @interface HDLSiriSceneListCell : UITableViewCell //@property (nonatomic, strong) UIView *bgView;//背景View @property (nonatomic, strong) UILabel *titleLabel;//场景标题 @property (nonatomic, strong) UIView *lineView;//分割线View @property (nonatomic, strong) INUIAddVoiceShortcutButton API_AVAILABLE(ios(12.0)) *shortcutButton;//快捷指令按钮 @property (nonatomic, strong) HDLSiriControlModel *model;//场景model @property (nonatomic, strong) NSString *homeId; -(void)initModel:(HDLSiriControlModel *)model intent:(HDLRunSceneIntent*)intent API_AVAILABLE(ios(12.0)); @end NS_ASSUME_NONNULL_END