Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created September 2, 2013 10:22
Show Gist options
  • Save jlcampana/6411416 to your computer and use it in GitHub Desktop.
Save jlcampana/6411416 to your computer and use it in GitHub Desktop.
Check iOS version preprocessor
// 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