JLChen
2021-11-25 6f4ad80721cef80c1db8b8b417df8b2b26a21f37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  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;
@property (nonatomic, strong) NSString               *titleName;
@end
 
NS_ASSUME_NONNULL_END