Created
September 25, 2013 09:17
-
-
Save jlcampana/6697106 to your computer and use it in GitHub Desktop.
Check for iOS7
From http://stackoverflow.com/questions/18992766/best-way-to-check-for-ios-7-or-earlier
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
#ifdef NSFoundationVersionNumber_iOS_6_1 | |
#define SD_IS_IOS7 (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) | |
#else | |
#define SD_IS_IOS7 NO | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment