Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

6 Answers

You can use Gestalt:

SInt32 version = 0;
Gestalt( gestaltSystemVersion, &version );
BOOL leopard = ( version >= 0x1050 );

if ( leopard )
{
    //draw it this way
}
else
{
    //draw it that way
}

Keep in mind if you're checking if a method is available or not, it's better to test that directly using respondsToSelector:.

share|improve this answer
11  
Note that gestaltSystemVersion is discouraged since 10.4 in favor of gestaltSystemVersionMajor, gestaltSystemVersionMinor, and gestaltSystemVersionBugFix, due to the 1-digit limit. 10.4.10 and .11, for example, are impossible to detect using your code. – smorgan May 20 '09 at 15:12
2  
As Gestalt is deprecated in 10.8, is there an alternative way that works from 10.6 - 10.8? – adib Jul 27 '12 at 17:14

Again, you can use Gestalt. Look at the documentation for more information; specifically, you'll want to pass the gestaltSystemVersionMajor, gestaltSystemVersionMinor, and gestaltSystemVersionBugFix constants in the "System Version Constants" portion of the Gestalt Manager Reference documentation

share|improve this answer
NSString *osver()
{
    SInt32 versionMajor=0, versionMinor=0, versionBugFix=0;
    Gestalt(gestaltSystemVersionMajor, &versionMajor);
    Gestalt(gestaltSystemVersionMinor, &versionMinor);
    Gestalt(gestaltSystemVersionBugFix, &versionBugFix);
    return [NSString stringWithFormat:@"%d.%d.%d", versionMajor, versionMinor, versionBugFix];
}
share|improve this answer
Just what I was looking for. – David Feb 13 '12 at 7:11
   
Sadly, Gestalt is deprecated as of 10.8. – Peter Hosey Sep 29 '12 at 5:05

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:

NSString *versionString;
NSDictionary * sv = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"];
versionString = [sv objectForKey:@"ProductVersion"];

Alternatively, the command swvers -productVersion will do the same.

share|improve this answer
That works, but it incurs disk I/O and is unnecessary. Gestalt is a much better (and faster) alternative. – Quinn Taylor Sep 16 '09 at 16:47
But deprecated since 10.8 and it seems that this is the best way currently available. See this question: stackoverflow.com/questions/11072804/… – hobotron Oct 2 '12 at 10:11
Thanks, best solution I've found since 10.8 – Michael Robinson Nov 13 '12 at 6:42

-[NSProcessInfo operatingSystemVersionString] is human readable and localized. Appropriate for displaying to user or using in bug emails and such, but not appropriate for parsing.

share|improve this answer
+1: Very nice. I suggested a slight edit of mentioning the class method +processInfo for getting an instance to call -operatingSystemVersionString on. – ArtOfWarfare May 5 at 18:45

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

share|improve this answer
Meh, seems like more trouble than it's worth for a simple check. Maybe if I were already using GTM, but it's simpler to just check gestaltSystemVersionMinor. – Quinn Taylor Sep 16 '09 at 16:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.