How to get correct scale factor for iPhone 6+?

1.3k Views Asked by At

When retina devices were introduced I started using this code in my apps:

int retinaMult = [[UIScreen mainScreen] scale];

which would return 1 on a non-retina device and 2 on a retina device. I assumed it would return 3 on an iPhone 6+ but I'm still getting a 2. Is there something else I need to be doing?

Note: I tried nativeScale instead of scale and that returned the same numbers.

1

There are 1 best solutions below

0
On BEST ANSWER

Add lauch images to enable native iPhone 6 and iPhone 6+ resolution.

enter image description here