Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is a Launch Image needed despite having a Lauch Screen File?

In iOS 10 I used a Launch Screen File instead of Launch Images:

enter image description here

After converting to Swift 4 in Xcode 9 for iOS 11 I get the following warning:

Missing "[email protected]" launch image

enter image description here

Why is a launch image needed when there is already the launch screen?

like image 316
Manuel Avatar asked Sep 21 '17 03:09

Manuel


1 Answers

The solution was to temporarily add a launch image asset catalog.

  1. Click on Use Asset Catalog...:

enter image description here

  1. Choose to create a new asset catalog:

enter image description here

  1. Switch back to Don't use asset catalogs:

enter image description here

  1. Delete the automatically created Images.xcassets.

  2. The warning is gone.

like image 112
Manuel Avatar answered Nov 14 '22 21:11

Manuel