Skip to content

Instantly share code, notes, and snippets.

@dutran90
Created August 18, 2015 15:38
Show Gist options
  • Save dutran90/de53b64f0603eadff0ef to your computer and use it in GitHub Desktop.
Save dutran90/de53b64f0603eadff0ef to your computer and use it in GitHub Desktop.
AppDelegate
// Call ViewController with UINavigationController
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
MainVC *vcMain = [[MainVC alloc] initWithNibName:@"MainVC" bundle:nil];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vcMain];
self.window.rootViewController = nav;
nav.navigationBarHidden = YES;
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment