Created
September 26, 2012 14:27
-
-
Save d3signerd/3788370 to your computer and use it in GitHub Desktop.
Macros for iOS Devices: iPhone/iPod, iPhone 5 and iPad
This file contains 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: 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