#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