Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone){
  2. UIStoryboard *storyBoard;
  3.  
  4. CGSize result = [[UIScreen mainScreen] bounds].size;
  5. CGFloat scale = [UIScreen mainScreen].scale;
  6. result = CGSizeMake(result.width * scale, result.height * scale);
  7.  
  8. if(result.height == 960){
  9. storyBoard = [UIStoryboard storyboardWithName:@"3inchstoryboard" bundle:nil];
  10. UIViewController *initViewController = [storyBoard instantiateInitialViewController];
  11. [self.window setRootViewController:initViewController];
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement