Created
June 30, 2014 09:45
-
-
Save thoretton-edwin/2211838d4d5c3a6a3f74 to your computer and use it in GitHub Desktop.
iOS check platform version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) { | |
| // Load resources for iOS 6.1 or earlier | |
| } else { | |
| // Load resources for iOS 7 or later | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment