Skip to content

Instantly share code, notes, and snippets.

@berikv
Last active December 24, 2015 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berikv/6765119 to your computer and use it in GitHub Desktop.
Save berikv/6765119 to your computer and use it in GitHub Desktop.
Check iOS version
if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {
// Load resources for iOS 6.1 or earlier
} else {
// Load resources for iOS 7 or later
}
// But only in XCode 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment