Skip to content

Instantly share code, notes, and snippets.

@uhhuhyeah
Created July 1, 2010 23:16
Show Gist options
  • Save uhhuhyeah/460704 to your computer and use it in GitHub Desktop.
Save uhhuhyeah/460704 to your computer and use it in GitHub Desktop.
How to detect is ipad on earlier pre ipad OS versions.
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 30200
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
return YES;
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment