Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created September 4, 2012 08:37
Show Gist options
  • Save jlcampana/3618570 to your computer and use it in GitHub Desktop.
Save jlcampana/3618570 to your computer and use it in GitHub Desktop.
Orientation
+(BOOL)orientationIsPortrait
{
return UIDeviceOrientationIsPortrait([[UIApplication sharedApplication] statusBarOrientation]);
}
+ (UIInterfaceOrientation) interfaceOrientation
{
return [[UIApplication sharedApplication] statusBarOrientation];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment