Skip to content

Instantly share code, notes, and snippets.

@danstepanov
Created August 18, 2015 21:14
Show Gist options
  • Save danstepanov/2eaec6a34786e1ae6f6b to your computer and use it in GitHub Desktop.
Save danstepanov/2eaec6a34786e1ae6f6b to your computer and use it in GitHub Desktop.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch
self.window.backgroundColor = [UIColor whiteColor];
MainViewController *viewController = [[MainViewController alloc] init];
self.window.rootViewController = viewController;
[self.window makeKeyAndVisible];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment