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?
|
feedback
|
|
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 | |||||||||||||||||||
feedback
|
| |||||||||||
feedback
|
|
I recommend:
credit: http://stackoverflow.com/questions/820142/how-to-target-a-specific-iphone-version | |||
|
feedback
|
|
| |||||
feedback
|
|
Try:
| |||||
feedback
|
|
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.
| ||||
|
feedback
|