2022-10-12 04:57:08 +08:00
|
|
|
#import "TSHAppDelegateNoScene.h"
|
|
|
|
#import "TSHRootViewController.h"
|
2022-09-02 23:19:48 +08:00
|
|
|
|
2022-10-12 04:57:08 +08:00
|
|
|
@implementation TSHAppDelegateNoScene
|
2022-09-02 23:19:48 +08:00
|
|
|
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
|
|
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
2022-10-12 04:57:08 +08:00
|
|
|
_rootViewController = [[UINavigationController alloc] initWithRootViewController:[[TSHRootViewController alloc] init]];
|
2022-09-02 23:19:48 +08:00
|
|
|
_window.rootViewController = _rootViewController;
|
|
|
|
[_window makeKeyAndVisible];
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|