Disable image launch from application

I want to disable the startup image from my application. I already have a screensaver, so the application first launches its launch image, and then the screensaver. I want to disable the launch image and just show the splash screen using the launch.please application. thank you in advance

+4
source share
3 answers

you cannot: it remains until your program is loaded and returned from application:didFinishLaunchingWithOptions : Since the startup image is displayed when the application loads, and a splash means that you want to show some other information. Apple recommends using a screenshot of the main window of your application, so it seems that your application starts faster

+2
source

Since you cannot disable the splash, a regular hack should make it look like your own splash screen. He will move well from one to another.

+2
source

Solution 1 :
Check your Default.png and Default@2x.png and Default-568h@2x.png If this is not your file, then delete it from the project.

Solution 2 :
Add a splash image in three types and remname as Default.png and Default@2x.png and Default-568h@2x.png

0
source

Source: https://habr.com/ru/post/1482549/


All Articles