Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change the iOS app launch background to white instead of black?

Tags:

ios

How do I change the iOS app launch background to white instead of black?

Im using a transparent png as launch image and thus the background shows through as black. I know I could make the png include a white background, but I thought id keep the media assets to a minimum.

like image 633
marciokoko Avatar asked Feb 16 '23 10:02

marciokoko


2 Answers

When an iOS app is launched, the launch image is displayed full screen while it loads. You have no other options or configuration available.

Basically, you will have to provide a white launch image.

Honestly though, a flat white PNG will have basically the same file size as a transparent one (~20kB), so it doesn't matter what colour you make it. If file size is really such a concern for you, you could try using something like ImageOptim to reduce the size of the image.


The Apple Human Interface Guidelines state:

Generally, design a launch image that is identical to the first screen of the app.

For a user-friendly and smooth experience, your launch image should look as close to the first screen of your app as possible (obviously excluding text and dynamic content, but including toolbars etc.), so you'd be better off providing an actual image rather than a blank screen.

like image 78
Greg Avatar answered Feb 19 '23 00:02

Greg


You cannot modify the background color of Loading screen. By default it will black.

like image 29
VGruenhagen Avatar answered Feb 19 '23 00:02

VGruenhagen