Created
October 31, 2011 12:18
-
-
Save rhysforyou/1327369 to your computer and use it in GitHub Desktop.
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
| // In AppDelegate.m | |
| - (void)application:(UIApplication *)application | |
| willChangeStatusBarOrientation:(UIInterfaceOrientation)newStatusBarOrientation duration:(NSTimeInterval)duration | |
| { | |
| // Do some stuff with the orientation | |
| // UIOrientation is an enumerable defined as | |
| // | |
| // typedef enum { | |
| // UIInterfaceOrientationPortrait = UIDeviceOrientationPortrait, | |
| // UIInterfaceOrientationPortraitUpsideDown = UIDeviceOrientationPortraitUpsideDown, | |
| // UIInterfaceOrientationLandscapeLeft = UIDeviceOrientationLandscapeRight, | |
| // UIInterfaceOrientationLandscapeRight = UIDeviceOrientationLandscapeLeft | |
| // } UIInterfaceOrientation; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment