Created
May 3, 2011 14:12
-
-
Save jeksys/953398 to your computer and use it in GitHub Desktop.
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)isRunningOniPad | |
{ | |
static BOOL hasCheckediPadStatus = NO; | |
static BOOL isRunningOniPad = NO; | |
if (!hasCheckediPadStatus) | |
{ | |
if ([[UIDevice currentDevice] respondsToSelector:@selector(userInterfaceIdiom)]) | |
{ | |
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) | |
{ | |
isRunningOniPad = YES; | |
hasCheckediPadStatus = YES; | |
return isRunningOniPad; | |
} | |
} | |
hasCheckediPadStatus = YES; | |
} | |
return isRunningOniPad; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment