Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Just that question I want to detect the retina display in my MonoTouch app. Thanks.

share|improve this question

2 Answers

up vote 7 down vote accepted

There are already answers for ObjectiveC but here's a C# version:

 bool retina = (UIScreen.MainScreen.Scale > 1.0);

That will work for the newer iPhone and iPod Touch and I suspect (will know in less than two weeks) for the new iPad.

Jason's approach will work too and can be attractive if you need to know several hardware related features (e.g. retina + camera).

share|improve this answer
Thank you so much! – JMGH Mar 8 '12 at 3:56
interesting - I assumed you had to check the device type to know this – Jason Mar 8 '12 at 11:59

Xamarin has a wiki entry on detecting the hardware device type.

share|improve this answer
Thanks for your answer, that additional information for the device types is going to be very useful too. – JMGH Mar 8 '12 at 3:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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