How can I check and conditionally only compile / run code if iOS5 is available ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can either check the
But personally I don't like that method as I don't like the parsing of the string returned from The best way is to check that whatever class / method it is that you want to use, exists. For example: If you want to use
Or if you want to use
In general it's better to do checks like that than to look at the system version. |
|||
|
|
|
Try out this code:
Hope this helps you. |
||||
|
|