Skip to content

Instantly share code, notes, and snippets.

@d3signerd
Created September 26, 2012 14:27
Show Gist options
  • Save d3signerd/3788370 to your computer and use it in GitHub Desktop.
Save d3signerd/3788370 to your computer and use it in GitHub Desktop.
Macros for iOS Devices: iPhone/iPod, iPhone 5 and iPad
/** BOOL: Detect if device is an iPad **/
#define IS_IPAD ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad )
/** BOOL: Detect if device is an iPhone or iPod **/
#define IS_IPHONE ( UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone )
/** BOOL: Detect if device is an iPhone 5 **/
#define IS_IPHONE_5 ( IS_IPHONE ? CGSizeEqualToSize([[UIScreen mainScreen] preferredMode].size,CGSizeMake(640, 1136)) ? YES : NO : NO )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment