Created
May 14, 2014 09:18
-
-
Save sugarmo/987f9b058d0b23747ebb to your computer and use it in GitHub Desktop.
Force Device to Rotate
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
if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { | |
objc_msgSend([UIDevice currentDevice], @selector(setOrientation:), newOrientation); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment