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