Created
January 21, 2014 21:27
-
-
Save iggym/8548746 to your computer and use it in GitHub Desktop.
Check if you are on iOS 7
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 (NSFoundationVersionNumber > NSFoundationVersionNumber_iOS_6_1) { | |
| // do stuff for iOS 7 and newer | |
| } | |
| else { | |
| // do stuff for older versions than iOS 7 | |
| } | |
| see http://stackoverflow.com/questions/18992766/best-way-to-check-for-ios-7-or-earlier |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment