LaunchScreen not showing up on any devices and projects

Viewed 206

I tried server methods to fix this problem, but nothing seems to work. The launchScreen won't show up on any devices or any project. Even in the simulator the launchScreen is not showing up.

I added background color and a imageView to my launchScreen.

This is what I already tried:

set it to initialViewController

add new viewController and deleted the old one

changed the name in the info.plist

3 Answers

Make sure that Launch Screen Filename is correctly set.

enter image description here

There could be couple of possibilities.

  1. Confirm that your launch screen has Is Initial View Controller check on. It is indicating that storyboard is a entry point of launch.

enter image description here

  1. Your Launch Screen File name should be correct. You can find the same in General tab of project target.

enter image description here

  1. Check Target Membership for Launch Screen.

enter image description here

May be, you catched the bug which prevents updating of LaunchScreen. There are some methods to fix it. For me only helped removing of LaunchScreen file, recreating new one, cleaning project and removing the app with device reboot before new install.

iOS Keeping old launch screen and app icon after update

Related