Does iOS SDK provides an easy way to check if the currentDevice has an high-resolution display (retina) ?

The best way I've found to do it now is :

    if ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] == YES && [[UIScreen mainScreen] scale] == 2.00) {
         // RETINA DISPLAY
    }
link|improve this question

70% accept rate
Out of curiosity - what are you doing when you detect the display other than showing larger versions of your art work? – mbehan Aug 17 '10 at 15:35
3  
@mbehan: I have a TTImageView (see Three20 framework) and I want to give an high-resolution url of the image. – Pierre Valade Aug 18 '10 at 10:05
feedback

1 Answer

In order to detect the Retina display reliably on all iOS devices, you need to check if the device is running iOS4+ and if the [UIScreen mainScreen].scale property is equal to 2.0. You CANNOT assume a device is running iOS4+ if the scale property exists, as the iPad 3.2 also contains this property.

On an iPad running iOS3.2, scale will return 1.0 in 1x mode, and 2.0 in 2x mode -- even though we know that device does not contain a Retina display. Apple changed this behavior in iOS4.2 for the iPad: it returns 1.0 in both 1x and 2x modes. You can test this yourself in the simulator.

I test for the -displayLinkWithTarget:selector: method on the main screen which exists in iOS4.x but not iOS3.2, and then check the screen's scale:

if ([[UIScreen mainScreen] respondsToSelector:@selector(displayLinkWithTarget:selector:)] &&
    ([UIScreen mainScreen].scale == 2.0)) {
  // Retina display
} else {
  // non-Retina display
}
link|improve this answer
You say that "Apple changed this behavior in iOS4.2 for the iPad", implying that in iOS4.1, your code above would return "is Retina" for an iPad running an iPhone app in 2x mode. Am I wrong? – makdad Mar 11 at 12:26
1  
There never was a 4.1 for iPad. Only 3.2, then 4.2. – Jonny Apr 2 at 18:26
Great, detailed answer! – delirus May 15 at 14:32
1  
This call is a bit expensive so I'd initialize a BOOL with it on app start and use that in the app. – n13 May 20 at 14:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.