Created
July 30, 2013 17:27
-
-
Save kzim44/6114993 to your computer and use it in GitHub Desktop.
Loading app resources for specific versions of iOS
This file contains 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