Skip to content

Instantly share code, notes, and snippets.

@Dimillian
Created September 30, 2012 16:37
Show Gist options
  • Save Dimillian/3807501 to your computer and use it in GitHub Desktop.
Save Dimillian/3807501 to your computer and use it in GitHub Desktop.
isIphone5
+(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