0

I don't know what happened but since some days ago the LaunchScreen is not being displayed. Check the following:

enter image description here

enter image description here

enter image description here

Any ideas?

nikogram
  • 71
  • 6
  • You are defining LaunchImage and LaunchScreen.storyboard at the same time? Which one that you want to use? – lowleetak Nov 14 '17 at 22:31
  • delete `XSLaunchImageAssets` key string ,use LaunchScreen only. https://developer.xamarin.com/guides/ios/application_fundamentals/working_with_images/launch-screens/ – ColeX Nov 15 '17 at 02:16

1 Answers1

1

Seems that you want to use LaunchImage Assets for your LaunchScreen. You are setting Source & LaunchScreen, both, at the same time.

If you want to use LaunchImage Assets, Delete the content inside the Launch Screen in info.plist as below:

enter image description here

Launch Screen uses the LaunchScreen.storyboard single file to use across the devices (iPhone/iPads). While Assets Source uses the Image catalogs, to set specific Launch Image for some specific device of resolution.

You have to use both of this options as an alternatives.

MilanG
  • 2,551
  • 16
  • 24