Created
November 18, 2010 00:50
-
-
Save yllan/704451 to your computer and use it in GitHub Desktop.
Test iPad
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
+(BOOL) isIPad { | |
BOOL isIPad=NO; | |
NSString* model = [UIDevice currentDevice].model; | |
if ([model rangeOfString:@"iPad"].location != NSNotFound) { | |
return YES; | |
} | |
return isIPad; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment