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?
|
|
|
You can get the OS version using:
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
Some classes, like
Apple uses
Important Note:
If for whatever reason you decide that |
|||||||||||||||||||
|
|
|||||||||||||||||||||
|
|
|
|||||||
|
|
Try:
|
|||||||||||
|
|
I recommend:
credit: http://stackoverflow.com/questions/820142/how-to-target-a-specific-iphone-version |
|||||||||||||
|
|
||||
|
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 Also worth considering is the possibility of a bad version input which can not reasonably be compared to. Apple supplies the three predefined constants 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 With this said, consider the following code.
|
||||
|
|
|
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.
Project Page: nv-ios-version Blog: Get and compare iOS version at runtime with Version class |
||||
|
|
|
In MonoTouch: To get the Major version use:
For minor version use:
|
|||
|
|
|
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.
|
|||
|
|
|
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. */
} |
|||
|
|
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.