Skip to content

Instantly share code, notes, and snippets.

@thoretton-edwin
Created June 30, 2014 09:45
Show Gist options
  • Select an option

  • Save thoretton-edwin/2211838d4d5c3a6a3f74 to your computer and use it in GitHub Desktop.

Select an option

Save thoretton-edwin/2211838d4d5c3a6a3f74 to your computer and use it in GitHub Desktop.
iOS check platform version
if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {
// Load resources for iOS 6.1 or earlier
} else {
// Load resources for iOS 7 or later
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment