17 lines
285 B
Objective-C
17 lines
285 B
Objective-C
//
|
|
// SceneDelegate.h
|
|
// SpeechDemo
|
|
//
|
|
// Created by fangweiwei on 2019/12/6.
|
|
// Copyright © 2019 fangweiwei. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface SceneDelegate : UIResponder <UIWindowSceneDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow * window;
|
|
|
|
@end
|
|
|