Skip to content

Instantly share code, notes, and snippets.

@g-1
Created April 7, 2014 16:39
Show Gist options
  • Save g-1/10023803 to your computer and use it in GitHub Desktop.
Save g-1/10023803 to your computer and use it in GitHub Desktop.
Storyboardで3.5inchディスプレイに手っ取り早く対応する。 ref: http://qiita.com/g-1/items/074aa4a3f0f886e271ec
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
//3.5inchと4inchを読み分けする
CGRect rect = [UIScreen mainScreen].bounds;
if (rect.size.height == 480) {
UIStoryboard* storyboard = [UIStoryboard storyboardWithName:@"3_5_inch" bundle:nil];
UIViewController* rootViewController = [storyboard instantiateInitialViewController];
self.window.rootViewController = rootViewController;
}
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment