Created
December 5, 2013 14:24
-
-
Save jlcampana/7805856 to your computer and use it in GitHub Desktop.
Permitir rotación dependiendo si es iPad o iPhone
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation | |
{ | |
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) | |
{ | |
return YES; | |
} | |
else | |
{ | |
return (interfaceOrientation == UIInterfaceOrientationPortrait); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment