1
0
mirror of https://github.com/opa334/TrollStore.git synced 2025-01-19 05:25:41 +08:00
TrollStore/TrollHelper/TSHAppDelegateNoScene.m

15 lines
516 B
Objective-C

#import "TSHAppDelegateNoScene.h"
#import "TSHRootViewController.h"
@implementation TSHAppDelegateNoScene
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
_rootViewController = [[UINavigationController alloc] initWithRootViewController:[[TSHRootViewController alloc] init]];
_window.rootViewController = _rootViewController;
[_window makeKeyAndVisible];
return YES;
}
@end