20 lines
335 B
Objective-C
20 lines
335 B
Objective-C
//
|
|
// SettingsViewController.h
|
|
// SpeechDemo
|
|
//
|
|
// Created by fangweiwei on 2020/2/28.
|
|
// Copyright © 2020 fangweiwei. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SettingsViewController : UITableViewController
|
|
|
|
@property (strong, nonatomic) NSString *viewId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|