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 check if the iOS version of the device is greater then the 3.1.3 I tried things like:

[[UIDevice currentDevice].systemVersion floatValue]

but does not work, I just want a:

if (version > 3.1.3) { }

How can I do this?

share|improve this question

11 Answers

up vote 270 down vote accepted

You can get the OS version using:

[[UIDevice currentDevice] systemVersion]

However, you should avoid relying on the version string as an indication of device or OS capabilities. There is usually a more reliable method of checking whether a particular feature or class is available. For example, you can check if UIPopoverController is available on the current device using NSClassFromString:

if(NSClassFromString(@"UIPopoverController")) {
    // Do something
}

Some classes, like CLLocationManager and UIDevice, provide methods to check device capabilities:

if([CLLocationManager headingAvailable]) {
    // Do something
}

Apple uses systemVersion in their GLSprite sample code, so my recommendation can't be absolute:

// A system version of 3.1 or greater is required to use CADisplayLink. The NSTimer
// class is used as fallback when it isn't available.
NSString *reqSysVer = @"3.1";
NSString *currSysVer = [[UIDevice currentDevice] systemVersion];
if ([currSysVer compare:reqSysVer options:NSNumericSearch] != NSOrderedAscending)
    displayLinkSupported = TRUE;

Important Note: If for whatever reason you decide that systemVersion is what you want, make sure to treat it as an string or you risk truncating the minor revision number (eg. 3.1.2 -> 3.1).

share|improve this answer
62  
There are specific cases where checking for system version is warranted. For example, a couple of classes and methods that were private n 3.x were made public in 4.0, so if you simply checked for their availability you would get a wrong result in 3.x. Additionally, the way that UIScrollViews handle zoom scales changed subtly in 3.2 and above, so you would need to check OS versions in order to process the results appropriately. – Brad Larson Jul 27 '10 at 4:03
Good clarification, thank you. – Justin Jul 31 '10 at 17:49
2  
iOS 3.2 does not appear to send -viewWillAppear in a UISplitViewController. My hack is to determine if < iOS 4.0, and send it to the Detail View Controller myself in the Root View's -didSelectRowAtIndexPath. – noloader Jul 17 '11 at 9:36
10  
Another use for version number checking is working around bugs. Our app has to support iOS 3.0. There's a bug in UITableView (with regards to inserting rows) that was fixed in 3.1, but crashes on 3.0. I can't do a method existence check, because it exists, just with bugs. However, you're right that if what you're doing can be done by checking for method existence, it should be. – Amy Worrall Aug 11 '11 at 8:21
3  
You need to be a bit careful here because [@"10.0" compare:@"10" options:NSNumericSearch] returns NSOrderedDescending, which might well not be intended at all. (I might expect NSOrderedSame.) This is at least a theoretical possibility. – SK9 Dec 10 '11 at 9:51
show 2 more comments
/*
 *  System Versioning Preprocessor Macros
 */ 

#define SYSTEM_VERSION_EQUAL_TO(v)                  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame)
#define SYSTEM_VERSION_GREATER_THAN(v)              ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending)
#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v)  ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN(v)                 ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending)
#define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v)     ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending)

/*
 *  Usage
 */ 

if (SYSTEM_VERSION_LESS_THAN(@"4.0")) {
    ...
}

if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"3.1.1")) {
    ...
}
share|improve this answer
7  
+1. Keeping this in a header that you can include where needed is the easiest solution I can think of. In several cases this is more reliable than checking for availability using NSClassFromString. Another example is in iAd, where if you use ADBannerContentSizeIdentifierPortrait in a version before 4.2 you'll get EXEC_BAD_ACCESS, but the equivalent ADBannerContentSizeIdentifier320x50 is deprecated after 4.1. – Rab Dec 12 '11 at 14:32
3  
superb. Exactly what I needed to make it work. – Anshu Jan 2 '12 at 11:51
5  
Nice macros, thank you. This should be the correct (best) answer. – PsychoDad Mar 27 '12 at 16:24
1  
Innovative Solution yet ! – mysticboy59 Nov 3 '12 at 13:00
1  
so nice, thanks buddy! – Jason Zhao Nov 16 '12 at 16:25
show 1 more comment

Try this blog: http://cocoawithlove.com/2010/07/tips-tricks-for-conditional-ios3-ios32.html

share|improve this answer
Checking for supported features is a much better approach to take, I think. – Kendall Helmstetter Gelner Jul 27 '10 at 3:12
2  
I wonder why the most elegant solution, not relying on ugly string checks... is the less ranked... Maybe you should edit your answer to emphasis the use of kCFCoreFoundationVersionNumber (Matt Gallagher is a cocoa gold mine...) – Vincent G Dec 6 '11 at 10:32

Try:

NSComparisonResult order = [[UIDevice currentDevice].systemVersion compare: @"3.1.3" options: NSNumericSearch];
if (order == NSOrderedSame || order == NSOrderedDescending) {
    // OS version >= 3.1.3
} else {
    // OS version < 3.1.3
}
share|improve this answer
Why not reverse the order here and save a comparision, since both @"3.1.3" and systemVersion are NSStrings? Ie: ` if ([@"3.1.3" compare: [UIDevice currentDevice].systemVersion options: NSNumericSearch] == NSOrderedDescending) ;// OS version >= 3.1.3 else ;// OS version < 3.1.3` – Rob May 12 '12 at 21:35
1  
Doing that may make the logic less clear. The operation should be equivalent, however. – Jonathan Grynspan May 13 '12 at 8:23
A comparison between two integers is surely not very expensive. – KPM Jul 30 '12 at 14:32
It's really a matter of style. The overhead of message dispatch will vastly outweigh the extra integer comparison. – Jonathan Grynspan Jul 30 '12 at 14:52

I recommend:

if ([[[UIDevice currentDevice] systemVersion] floatValue] > 3.13) {
    ; // ...
}

credit: http://stackoverflow.com/questions/820142/how-to-target-a-specific-iphone-version

share|improve this answer
8  
Um, no. This is wrong in a couple of important ways. 1: Version numbers aren't always a simple floating-point number, for example "4.2.1" is a valid iOS version number. 2: You're doing raw floating point comparison. Due to the finite precision of floating point numbers, your comparison may fail (or succeed) when you wouldn't otherwise expect it to. – Mac Jul 2 '12 at 4:11
6  
And the most damning reason, 3: Float numbers have different ordering than strings: 4.10 < 4.2, but "4.10" > "4.2". – yakovlev Aug 22 '12 at 20:02
even more damning? [@"x.y.z" floatValue] returns x.y, so 3.1.3 will always return 3.1, not 3.13. – Vitali Nov 30 '12 at 2:47
His point was that if a future version went from, say, 6.9.5 to 6.10.0, a float cast would fail. To date, I don't know of any Apple products where a minor version was greater than 9, but the release version certainly has gone above that (e.g. OS 10.4.11). I think it would be best for developers to assume the minor version could one day cause problems and treat it as a string-encoded list of integers. – Andrew Dec 4 '12 at 3:03
+(BOOL)doesSystemVersionMeetRequirement:(NSString *)minRequirement{

// eg  NSString *reqSysVer = @"4.0";


  NSString *currSysVer = [[UIDevice currentDevice] systemVersion];

  if ([currSysVer compare:minRequirement options:NSNumericSearch] != NSOrderedAscending)
  {
    return YES;
  }else{
    return NO;
  }


}
share|improve this answer
this works well, ignores all decimal points.. – Jef Nov 20 '12 at 12:27
Works Great!! TY – DZenBot Dec 12 '12 at 15:52

In general it's better to ask if an object can perform a given selector, rather than checking a version number to decide if it must be present.

When this is not an option, you do need to be a bit careful here because [@"5.0" compare:@"5" options:NSNumericSearch] returns NSOrderedDescending which might well not be intended at all; I might expect NSOrderedSame here. This is at least a theoretical concern, one that is worth defending against in my opinion.

Also worth considering is the possibility of a bad version input which can not reasonably be compared to. Apple supplies the three predefined constants NSOrderedAscending, NSOrderedSame and NSOrderedDescending but I can think of a use for some thing called NSOrderedUnordered in the event I can't compare two things and I want to return a value indicating this.

What's more, it's not impossible that Apple will some day expand their three predefined constants to allow a variety of return values, making a comparison != NSOrderedAscending unwise.

With this said, consider the following code.

typedef enum {kSKOrderedNotOrdered = -2, kSKOrderedAscending = -1, kSKOrderedSame = 0, kSKOrderedDescending = 1} SKComparisonResult;

@interface SKComparator : NSObject
+ (SKComparisonResult)comparePointSeparatedVersionNumber:(NSString *)vOne withPointSeparatedVersionNumber:(NSString *)vTwo;
@end

@implementation SKComparator
+ (SKComparisonResult)comparePointSeparatedVersionNumber:(NSString *)vOne withPointSeparatedVersionNumber:(NSString *)vTwo {
  if (!vOne || !vTwo || [vOne length] < 1 || [vTwo length] < 1 || [vOne rangeOfString:@".."].location != NSNotFound ||
    [vTwo rangeOfString:@".."].location != NSNotFound) {
    return SKOrderedNotOrdered;
  }
  NSCharacterSet *numericalCharSet = [NSCharacterSet characterSetWithCharactersInString:@".0123456789"];
  NSString *vOneTrimmed = [vOne stringByTrimmingCharactersInSet:numericalCharSet];
  NSString *vTwoTrimmed = [vTwo stringByTrimmingCharactersInSet:numericalCharSet];
  if ([vOneTrimmed length] > 0 || [vTwoTrimmed length] > 0) {
    return SKOrderedNotOrdered;
  }
  NSArray *vOneArray = [vOne componentsSeparatedByString:@"."];
  NSArray *vTwoArray = [vTwo componentsSeparatedByString:@"."];
  for (NSUInteger i = 0; i < MIN([vOneArray count], [vTwoArray count]); i++) {
    NSInteger vOneInt = [[vOneArray objectAtIndex:i] intValue];
    NSInteger vTwoInt = [[vTwoArray objectAtIndex:i] intValue];
    if (vOneInt > vTwoInt) {
      return kSKOrderedDescending;
    } else if (vOneInt < vTwoInt) {
      return kSKOrderedAscending;
    }
  }
  if ([vOneArray count] > [vTwoArray count]) {
    for (NSUInteger i = [vTwoArray count]; i < [vOneArray count]; i++) {
      if ([[vOneArray objectAtIndex:i] intValue] > 0) {
        return kSKOrderedDescending;
      }
    }
  } else if ([vOneArray count] < [vTwoArray count]) {
    for (NSUInteger i = [vOneArray count]; i < [vTwoArray count]; i++) {
      if ([[vTwoArray objectAtIndex:i] intValue] > 0) {
        return kSKOrderedAscending;
      }
    }
  }
  return kSKOrderedSame;
}
@end
share|improve this answer

With Version class that is contained in nv-ios-version project (Apache License, Version 2.0), it is easy to get and compare iOS version. An example code below dumps the iOS version and checks whether the version is greater than or equal to 6.0.

// Get the system version of iOS at runtime.
NSString *versionString = [[UIDevice currentDevice] systemVersion];

// Convert the version string to a Version instance.
Version *version = [Version versionWithString:versionString];

// Dump the major, minor and micro version numbers.
NSLog(@"version = [%d, %d, %d]",
    version.major, version.minor, version.micro);

// Check whether the version is greater than or equal to 6.0.
if ([version isGreaterThanOrEqualToMajor:6 minor:0])
{
    // The iOS version is greater than or equal to 6.0.
}

// Another way to check whether iOS version is
// greater than or equal to 6.0.
if (6 <= version.major)
{
    // The iOS version is greater than or equal to 6.0.
}

Project Page: nv-ios-version
https://github.com/TakahikoKawasaki/nv-ios-version

Blog: Get and compare iOS version at runtime with Version class
http://darutk-oboegaki.blogspot.jp/2013/04/get-and-compare-ios-version-at-runtime.html

share|improve this answer

In MonoTouch:

To get the Major version use:

UIDevice.CurrentDevice.SystemVersion.Split('.')[0]

For minor version use:

UIDevice.CurrentDevice.SystemVersion.Split('.')[1]
share|improve this answer
Why was this downvoted? – callisto Jan 21 at 13:02

A more generic version in Obj-C++ 11 (you could probably replace some of this stuff with the NSString/C functions, but this is less verbose. This gives you two mechanisms. splitSystemVersion gives you an array of all the parts which is useful if you just want to switch on the major version (e.g. switch([self splitSystemVersion][0]) {case 4: break; case 5: break; }).

#include <boost/lexical_cast.hpp>

- (std::vector<int>) splitSystemVersion {
    std::string version = [[[UIDevice currentDevice] systemVersion] UTF8String];
    std::vector<int> versions;
    auto i = version.begin();

    while (i != version.end()) {
        auto nextIllegalChar = std::find_if(i, version.end(), [] (char c) -> bool { return !isdigit(c); } );
        std::string versionPart(i, nextIllegalChar);
        i = std::find_if(nextIllegalChar, version.end(), isdigit);

        versions.push_back(boost::lexical_cast<int>(versionPart));
    }

    return versions;
}

/** Losslessly parse system version into a number
 * @return <0>: the version as a number,
 * @return <1>: how many numeric parts went into the composed number. e.g.
 * X.Y.Z = 3.  You need this to know how to compare again <0>
 */
- (std::tuple<int, int>) parseSystemVersion {
    std::string version = [[[UIDevice currentDevice] systemVersion] UTF8String];
    int versionAsNumber = 0;
    int nParts = 0;

    auto i = version.begin();
    while (i != version.end()) {
        auto nextIllegalChar = std::find_if(i, version.end(), [] (char c) -> bool { return !isdigit(c); } );
        std::string versionPart(i, nextIllegalChar);
        i = std::find_if(nextIllegalChar, version.end(), isdigit);

        int part = (boost::lexical_cast<int>(versionPart));
        versionAsNumber = versionAsNumber * 100 + part;
        nParts ++;
    }

    return {versionAsNumber, nParts};
}


/** Assume that the system version will not go beyond X.Y.Z.W format.
 * @return The version string.
 */
- (int) parseSystemVersionAlt {
    std::string version = [[[UIDevice currentDevice] systemVersion] UTF8String];
    int versionAsNumber = 0;
    int nParts = 0;

    auto i = version.begin();
    while (i != version.end() && nParts < 4) {
        auto nextIllegalChar = std::find_if(i, version.end(), [] (char c) -> bool { return !isdigit(c); } );
        std::string versionPart(i, nextIllegalChar);
        i = std::find_if(nextIllegalChar, version.end(), isdigit);

        int part = (boost::lexical_cast<int>(versionPart));
        versionAsNumber = versionAsNumber * 100 + part;
        nParts ++;
    }

    // don't forget to pad as systemVersion may have less parts (i.e. X.Y).
    for (; nParts < 4; nParts++) {
        versionAsNumber *= 100;
    }

    return versionAsNumber;
}
share|improve this answer

My solution is add a utility method to your utilities class (hint hint) to parse the system version and manually compensate for float number ordering.

Also, this code is rather simple, so I hope it helps some newbies. Simply pass in a target float, and get back a BOOL.

Declare it in your shared class like this: (+) (BOOL) iOSMeetsOrExceedsVersion:(float)targetVersion; Call it like this: BOOL shouldBranch = [SharedClass iOSMeetsOrExceedsVersion:5.0101];

(+) (BOOL) iOSMeetsOrExceedsVersion:(float)targetVersion {

/* Note: the incoming targetVersion should use 2 digits for each subVersion -- example 5.01 for v5.1, 5.11 for v5.11 (aka subversions above 9), 5.0101 for v5.1.1, etc. */

// Logic: as a string, system version may have more than 2 segments (example: 5.1.1)
// so, a direct conversion to a float may return an invalid number
// instead, parse each part directly

NSArray *sysVersion = [[UIDevice currentDevice].systemVersion componentsSeparatedByString:@"."];
float floatVersion = [[sysVersion objectAtIndex:0] floatValue];
if (sysVersion.count > 1) {
    NSString* subVersion = [sysVersion objectAtIndex:1];
    if (subVersion.length == 1)
        floatVersion += ([[sysVersion objectAtIndex:1] floatValue] *0.01);
    else
        floatVersion += ([[sysVersion objectAtIndex:1] floatValue] *0.10);
}
if (sysVersion.count > 2) {
    NSString* subVersion = [sysVersion objectAtIndex:2];
    if (subVersion.length == 1)
        floatVersion += ([[sysVersion objectAtIndex:2] floatValue] *0.0001);
    else
        floatVersion += ([[sysVersion objectAtIndex:2] floatValue] *0.0010);
}

if (floatVersion  >= targetVersion) 
    return TRUE;

// else
return FALSE;

}

share|improve this answer

protected by Rob Feb 25 at 16:52

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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