// // HDLSiriSceneListCell.h // HdlSmartIoT // // Created by 陈嘉乐 on 2021/11/17. // #import #import #import #import "HDLRunSceneIntent.h" #import "HDLSiriSceneModel.h" //#import 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