JLChen
2021-11-29 06c09ecbdf83cc5cc33971ffb75ba81e85b6eb33
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  HDLSiriSceneListViewController.h
//  HdlSmartIoT
//
//  Created by 陈嘉乐 on 2021/11/17.
//
 
#import <UIKit/UIKit.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface HDLSiriSceneListViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
 
@property (nonatomic, assign) UITableViewStyle       tableViewStyle;
@property (nonatomic, strong) UITableView            *tableView;
@property (nonatomic, strong) NSMutableArray         *dataSource;//NSArray<HDLSiriShortcutModel *>
@property (nonatomic, strong) NSString               *titleName;
@property (nonatomic, strong) NSString               *homeId;//住宅ID
 
 
@end
 
NS_ASSUME_NONNULL_END