Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created December 5, 2013 14:24
Show Gist options
  • Save jlcampana/7805856 to your computer and use it in GitHub Desktop.
Save jlcampana/7805856 to your computer and use it in GitHub Desktop.
Permitir rotación dependiendo si es iPad o iPhone
- (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