Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created January 21, 2014 10:44
Show Gist options
  • Save jlcampana/8537863 to your computer and use it in GitHub Desktop.
Save jlcampana/8537863 to your computer and use it in GitHub Desktop.
Detect retina display
if ([[UIScreen mainScreen] respondsToSelector:@selector(displayLinkWithTarget:selector:)] &&
([UIScreen mainScreen].scale == 2.0)) {
// Retina display
} else {
// non-Retina display
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment