Created
September 30, 2012 16:37
-
-
Save Dimillian/3807501 to your computer and use it in GitHub Desktop.
isIphone5
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
+(BOOL)isIphone5 | |
{ | |
if ([[UIScreen mainScreen]bounds].size.height == 568.0) { | |
return YES; | |
} | |
return NO; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment