IOS: the launch image becomes wrinkled in the center during a call / record / hotspot session

I use a set of images to launch for my application and noticed that when I call, record a voice note or share my Internet connection, I also do this in the background and launch my application, the launch screen is wrinkled in the center. Is there anything I can do to make the image look normal or is it just standard iOS behavior?

enter image description here

+11
ios objective-c xcode launchimage launch-screen
source share
3 answers

Just define the key in the plist file to solve your problem.

Status bar is initially hidden = YES

+6
source share

OK, the solution I found is to hide the status when the application starts, as here

+2
source share

It seems that Apple "takes" 4% of the screen from the middle of the screen (as far as I checked) to bring it to the status bar. Personally, I encountered this problem when using an iPhone modem.

Therefore, if it is not important for the vertical orientation of the image, the solution should be to place the image above / below this "average screen area of ​​4%" .

Examples when the image is cropped:

What the image should look like (vertical and horizontal image, width and height - fixed size)

What it really looks like

An example where the image looks as intended (but not centered):

Limit example

Image with a new example of restrictions

0
source share

All Articles