Oleksandr Matrosov
Oleksandr Matrosov

Reputation: 27159

Image.xcassets issue with displaying splashes for devices with iOS 8

Which images I should use if I only need to support landscape orientation and devices with iOS 7 and upper?

I have unselected all unneeded checkboxes, but the loading image does not appear for example on simulator 4s or 5 (c,s)? It only appears on iPhone 6 plus simulator. What can be a problem?

enter image description here

Upvotes: 0

Views: 119

Answers (1)

matt
matt

Reputation: 535566

You've encountered a bug with asset catalogs. You can't use an asset catalog to provide a launch image for an app that launches into landscape. To do what you're trying to do, you'll need to use the old-fashioned "named" launch images at the top level of your app bundle.

Upvotes: 1

Related Questions