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

I need to know current device is iPad2 or new iPad. I use [[UIScreen mainScreen] Scale],but the result is 1.0

share|improve this question
2  
possible duplicate of Programmatically detect an iPad 3 (HD)? – Rafał Rawicki Apr 12 '12 at 7:17
1  
build your app with xcode 4.3 with 5.1 SDK - this way you should get scale 2.0 for iPad3 – rokjarc Apr 12 '12 at 8:07

1 Answer

up vote 5 down vote accepted

As found here:

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad && [[UIScreen mainScreen]     respondsToSelector:@selector(scale)] && [UIScreen mainScreen].scale > 1)
{
    // new iPad
}
share|improve this answer
this method is not effective. new ipad scale also 1. and thank you your answer. – spmno Apr 12 '12 at 7:17
1  
the new ipad scale is 2.0. You don't need to check for respondsToSelector since he's looking at iPad 2 and the new iPad, which means it always have scale property – Xuki Apr 12 '12 at 7:41
@spmno - I can confirm that the scale property returns 2.0 on the new iPad in all of my applications, so it is a viable check. Note that you need to be building with the iOS 5.1 SDK for this to work. – Brad Larson Apr 16 '12 at 15:46

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.