Skip to content

Instantly share code, notes, and snippets.

@rbaulin
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save rbaulin/4b6cf6211c44526f36a9 to your computer and use it in GitHub Desktop.

Select an option

Save rbaulin/4b6cf6211c44526f36a9 to your computer and use it in GitHub Desktop.
AppDelegate without Storyboards snippet
<#ViewController#> *vc = [[<#ViewController#> alloc] init];
UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
UIWindow *window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
window.rootViewController = nc;
[window makeKeyAndVisible];
self.window = window;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment