Skip to content

Instantly share code, notes, and snippets.

@Aidan-Huang
Created May 6, 2014 06:05
Show Gist options
  • Save Aidan-Huang/5afa65e459890a57131d to your computer and use it in GitHub Desktop.
Save Aidan-Huang/5afa65e459890a57131d to your computer and use it in GitHub Desktop.
initDisplay
CGRect viewRect = [[UIScreen mainScreen] bounds];
self.window = [[UIWindow alloc] initWithFrame:viewRect];
UIViewController *viewController = [[UIViewController alloc] init];
UIView *colorView = [[UIView alloc] initWithFrame:viewRect];
colorView.backgroundColor = [UIColor darkGrayColor];
viewController.view = colorView;
self.window.rootViewController = viewController;
[self.window makeKeyAndVisible];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment