Skip to content

Instantly share code, notes, and snippets.

@jsai
Last active December 26, 2015 13:29
Show Gist options
  • Select an option

  • Save jsai/7158914 to your computer and use it in GitHub Desktop.

Select an option

Save jsai/7158914 to your computer and use it in GitHub Desktop.
iOS 7 Runtime Macro
#define LI_IS_IOS7_RUNTIME (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1)
// usage
if (LI_IS_IOS7_RUNTIME) {
// iOS 7 code
}
else {
// iOS 6 code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment