Skip to content

Instantly share code, notes, and snippets.

@jeffbailey
Created December 27, 2013 10:43
Show Gist options
  • Save jeffbailey/8145321 to your computer and use it in GitHub Desktop.
Save jeffbailey/8145321 to your computer and use it in GitHub Desktop.
Conditional code based on iOS version
float versionNumber = floor(NSFoundationVersionNumber);
if (versionNumber <= NSFoundationVersionNumber_iOS_6_1) {
// use iOS 6 style appearance
} else {
// use iOS 7 style appearance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment