Reputation: 275
i want to disable launch image from my app. I am already having a splash screen so on the app launch its showing launch image first and then the splash screen. i want to disable the launch image and just show splash screen on app launch.please help. thanks in advance
Upvotes: 4
Views: 9544
Reputation:
Solution 1:
Check your Default.png
and [email protected]
and [email protected]
If that is not your file then remove from project..
Solution 2:
Add your splashscreen Image in three types and remname as Default.png
and [email protected]
and [email protected]
Upvotes: 0
Reputation: 16240
As you can't disable the splash, the usual hack is to make it look just like your own splash screen. It'll transition nicely from one to the other
Upvotes: 2
Reputation: 7383
you can't as — it stays up until your program has been loaded and returned from application:didFinishLaunchingWithOptions
:
As Launch Image is displayed when the app loads.and the splash means you want to show some etc information. And Apple recommends using a screenshot of your app main window, so it appears that your app launch faster
Upvotes: 2