Skip to content

Instantly share code, notes, and snippets.

@guimello
Created March 25, 2011 14:22
Show Gist options
  • Save guimello/886906 to your computer and use it in GitHub Desktop.
Save guimello/886906 to your computer and use it in GitHub Desktop.
Running on Ipad or Iphone?
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
[self.window addSubview:self.splitVC.view];
} else {
[self.window addSubview:self.navigationController.view];
}
[self.window makeKeyAndVisible];
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment