Skip to content

Instantly share code, notes, and snippets.

@jwang
Created May 15, 2010 23:07
Show Gist options
  • Save jwang/402487 to your computer and use it in GitHub Desktop.
Save jwang/402487 to your computer and use it in GitHub Desktop.
header file to test if iPad for Universal Apps
#ifndef UI_USER_INTERFACE_IDIOM
#define IPAD NO
#define OS32PLUS NO
#else
#define IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define OS32PLUS YES
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment