Skip to content

Instantly share code, notes, and snippets.

@remear
Created August 23, 2011 20:03
Show Gist options
  • Save remear/1166342 to your computer and use it in GitHub Desktop.
Save remear/1166342 to your computer and use it in GitHub Desktop.
NSLog(@"%f", NSAppKitVersionNumber);
=> 1138.000000
#if NSAppKitVersionNumber >= 1138
NSLog(@"OS X LION");
#else
NSLog(@"OS X SNOW LEOPARD");
#endif
=> OS X SNOW LEOPARD
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment