Skip to content

Instantly share code, notes, and snippets.

@toto
Created September 10, 2014 07:48
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 toto/5bac71f9bbe409b2a352 to your computer and use it in GitHub Desktop.
Save toto/5bac71f9bbe409b2a352 to your computer and use it in GitHub Desktop.
Check iOS System version
NSOperatingSystemVersion ios8_0_1 = (NSOperatingSystemVersion){8, 0, 1};
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:ios8_0_1]) {
// foo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment