App presents strange scroll on iPhone 6

2

My app came to show a smaller screen when I squeeze on the iphone 6. Anyone have any suggestions?

Follow the screen:

Thankful

    
asked by anonymous 31.07.2015 / 04:45

1 answer

1

It takes a bit more information to give an accurate answer.

More "old" apps, which use XIB, tend to work because the XIB for iPhone 5 is automatically staggered on iPhones 6/6 +, as the aspect ratio (16: 9) is the same. >

Applications that use the old type of splash screen (Default * .png images) also scale automatically because they are presumed to be made for iPhone 5 or smaller. When you swap the static splash screen for an XIB or Storyboard screen, it is signaling that the app is compatible with iPhone 6/6 + and then the different screen size issues appear.

If you are using those newer screen-drawing features (Storyboard, AutoLayout), you have to rework the screen project so it adapts to different sizes by adding constraints. If the entire screen is drawn with absolute positions and sizes, exactly what appears in your picture happens: the interface does not occupy the entire screen. You have to start with relative sizes based on constraints.

At least this is my experience, comment if your problem does not fit ...

    
12.08.2015 / 06:25