Skip to content

Instantly share code, notes, and snippets.

@naotokui
Created November 19, 2011 05:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naotokui/1378493 to your computer and use it in GitHub Desktop.
Save naotokui/1378493 to your computer and use it in GitHub Desktop.
Check if Retina Display is available or not
// Check if Retina Display is available or not
if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] == YES && [[UIScreen mainScreen] scale] == 2.00){
hasRetina = YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment