Created
November 25, 2010 11:11
-
-
Save mborromeo/715220 to your computer and use it in GitHub Desktop.
[iPhone / iPad] Check if device is an iPad with 3.x devices
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 __IPHONE_OS_VERSION_MAX_ALLOWED >= 30200 | |
#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) | |
#else | |
#define IS_IPAD false | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment