Created
September 2, 2013 10:22
-
-
Save jlcampana/6411416 to your computer and use it in GitHub Desktop.
Check iOS version preprocessor
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
// e.g. check for iOS 6: | |
//#if __IPHONE_OS_VERSION_MIN_REQUIRED >= 60000 | |
#ifdef __IPHONE_7_0 | |
- (BOOL)supportedInterfaceOrientations | |
{ | |
return UIInterfaceOrientationMaskPortrait; | |
} | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment