Last active
August 29, 2015 14:20
-
-
Save rbaulin/4b6cf6211c44526f36a9 to your computer and use it in GitHub Desktop.
AppDelegate without Storyboards snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#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