Skip to content

Instantly share code, notes, and snippets.

@iggym
Created January 21, 2014 21:27
Show Gist options
  • Save iggym/8548746 to your computer and use it in GitHub Desktop.
Save iggym/8548746 to your computer and use it in GitHub Desktop.
Check if you are on iOS 7
if (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) {
// do stuff for iOS 7 and newer
}
else {
// do stuff for older versions than iOS 7
}
see http://stackoverflow.com/questions/18992766/best-way-to-check-for-ios-7-or-earlier
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment