1

I have an ios app but am trying to add a launch image to the start. I am testing on an old ios 6 phone (which I think is the retina 4.7). I added the launch image in assets catalog like

enter image description here

I then have it mentioned like so:

enter image description here

When I run the app on my iPhone 6 device it has no load screen. What am I missing? I used to have a LaunchScreen.storyboard but I have all these images of the right size made and want to use those.

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
cdub
  • 24,555
  • 57
  • 174
  • 303

1 Answers1

1

I've had this issue before and I believe it's a bug with Xcode. It will still be trying to use the LaunchScreen.storyboard file.

Try the following:

  1. Clean your project.
  2. Delete the app from the device/simulator.
  3. Restart Xcode/Simulator and re-run.

See https://stackoverflow.com/a/33698093/5032154 for more info.

jsh8w
  • 21
  • 4