0

I have recently been running into a problem with one of the iOS applications that I'm developing. The problem with this application is that UI elements appear to be oversized. In Xcode the elements could have the same default sizes, but during the simulation process the elements are almost too large to fit on the screen. Has anyone ran into a similar issue and figured out how to resolve it. I have attached pictures below that illustrate the problem more clearly. In one of the pictures below, the keyboard clearly appears to be larger than that in the other picture.

1 Answers1

0

Two possibilities

The device has Display Zoom turned on. You can change that in Settings > Display & Brightness > Display Zoom.

You app doesn't have a launch image for that size. Either add a launch image for that screen size or use a launch storyboard/xib. How to enable native resolution for apps on iPhone 6 and 6 Plus?

Community
  • 1
  • 1
Craig Siemens
  • 12,942
  • 1
  • 34
  • 51
  • Thank you so much! I was pulling my hair out trying to fix this error. It was the launch image that was the problem. – Osaze Shears Mar 22 '16 at 22:43