Skip to content

Instantly share code, notes, and snippets.

@vjyanand
Created September 30, 2014 14:36
Show Gist options
  • Save vjyanand/984b9bf2041a604322fd to your computer and use it in GitHub Desktop.
Save vjyanand/984b9bf2041a604322fd to your computer and use it in GitHub Desktop.
version check
NSOperatingSystemVersion ios8_1_0 = (NSOperatingSystemVersion){8, 1, 0};
if ([[NSProcessInfo processInfo] isOperatingSystemAtLeastVersion:ios8_1_0]) {
// Read and write workout information to health kit.
} else {
// Write workout information to health kit
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment