I want to check if the user is running the app on iOS less than 5.0 and display a label in the app.
How do I detect which iOS is running on user's device programmatically?
Thanks!
|
I want to check if the user is running the app on iOS less than 5.0 and display a label in the app. How do I detect which iOS is running on user's device programmatically? Thanks! |
|||
|
|
|
Best current version, without need to deal with numeric search within NSString is to define Like this:
and use them like this:
Outdated version belowto get OS version:
returns string, which can be turned into int/float via
like this
and compare like this
|
|||||||||||||
|
|
or check the version like
Hope this helps |
|||||
|
|
In MonoTouch: To get the Major version use:
For minor version use:
|
|||
|
|
|
Marek Sebera's is great most of the time, but if you're like me and find that you need to check the iOS version frequently, you don't want to constantly run a macro in memory because you'll experience a very slight slowdown, especially on older devices. Instead, you want to compute the iOS version as a float once and store it somewhere. In my case, I have a
To enable this functionality in your app, use this code (for iOS 5+ using ARC): GlobalVariables.h:
GlobalVariables.m:
Now you're able to easily check the iOS version without running macros constantly. Note in particular how I converted the Hope this helps anyone experiencing the issue I had! |
|||
|
|
|
A simple check for iOS version less than 5 (all versions):
|
|||||
|