Skip to content

Instantly share code, notes, and snippets.

@popochess
Created October 11, 2012 15:58
Show Gist options
  • Save popochess/3873385 to your computer and use it in GitHub Desktop.
Save popochess/3873385 to your computer and use it in GitHub Desktop.
//Create a ViewController
NavRootViewController *navViewController = [[NavRootViewController alloc] initWithNibName:@"NavRootViewController" bundle: nil];
//Use navRootViewController as its root Controller
UINavigationController *rootController = [[UINavigationController alloc] initWithRootViewController:navViewController];
//set the navigation bar title
[navViewController setTitle:@"Root View"];
self.window.rootViewController = rootController;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment