mirror of https://github.com/opa334/TrollStore.git
14 lines
519 B
Objective-C
14 lines
519 B
Objective-C
#import "TSI2AppDelegateNoScene.h"
|
|
#import "TSI2RootViewController.h"
|
|
|
|
@implementation TSI2AppDelegateNoScene
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
_window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
_rootViewController = [[UINavigationController alloc] initWithRootViewController:[[TSI2RootViewController alloc] init]];
|
|
_window.rootViewController = _rootViewController;
|
|
[_window makeKeyAndVisible];
|
|
return YES;
|
|
}
|
|
|
|
@end |