Guest User

Untitled

a guest
Jan 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. - (void)loadView
  2. {
  3. [super viewDidLoad];
  4. if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
  5. {
  6. CGSize result = [[UIScreen mainScreen] bounds].size;
  7. if(result.height == 480)
  8. {
  9. // iPhone Classic
  10. [[NSBundle mainBundle] loadNibNamed:@"TipMainViewController" owner:self options:nil];
  11. }
  12. if(result.height == 568)
  13. {
  14. // iPhone 5
  15. [[NSBundle mainBundle] loadNibNamed:@"TipMainViewController-5" owner:self options:nil];
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment