Created
May 30, 2011 11:58
-
-
Save shannoga/998802 to your computer and use it in GitHub Desktop.
Is that an ipad
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
+ (BOOL)isDeviceAniPad { | |
#ifdef UI_USER_INTERFACE_IDIOM | |
return (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad); | |
#else | |
return NO; | |
#endif | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment