I want to get the OS X system version, such as: 10.5.4, 10.4.8, etc. I want to get it in my app, how do I do this? Thanks!
|
You can use Gestalt:
Keep in mind if you're checking if a method is available or not, it's better to test that directly using respondsToSelector:. |
|||||||||
|
|
Again, you can use Gestalt. Look at the documentation for more information; specifically, you'll want to pass the |
||||
|
|
|
|||||||
|
|
|
You can read the property list at "/System/Library/CoreServices/SystemVersion.plist and extract the "ProductVersion" key, this is how the OS X installer application does it. Here's an example:
Alternatively, the command |
|||||||
|
|
|
|||
|
|
There's also a Cocoa wrapper around the Gestalt calls others have mentioned in the Google Toolbox for Mac: http://code.google.com/p/google-toolbox-for-mac/source/browse/trunk/Foundation/GTMSystemVersion.h |
|||
|