Created
July 10, 2013 13:25
-
-
Save howlingblast/5966259 to your computer and use it in GitHub Desktop.
iOS: device pixel ratio / retina
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
if ([[UIScreen mainScreen] respondsToSelector:@selector(displayLinkWithTarget:selector:)] && [[UIScreen mainScreen] scale] == 2.0) { | |
_devicePixelRatio = 2.0; // retina display | |
} | |
else { | |
_devicePixelRatio = 1.0; // non-retina display | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment