Created
April 5, 2010 13:16
-
-
Save lottadot/356321 to your computer and use it in GitHub Desktop.
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
if ([UIDevice instancesRespondToSelector:@selector(userInterfaceIdiom)] | |
&& [[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) { | |
// on iPad, running as iPad | |
} else { | |
// either not in 3.2, or on an iPhone, or on iPad in iPhone compatability mode | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment