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