Pregunta

According to the Apple docs, I can use different launch images when my app is launched via a custom url scheme. I have been able to implement this for the 3.5" standard and retina images.

I am supposed to use

<basename>-<url_scheme><scale_modifier><device_modifier>.png

which yields Default.png -> default-customURL.png and Default@2x.png -> Default-customURL@2x.png

but I can't quite get it right for

Default-568h@2x.png -> ???

How am I supposed to format this file name?

¿Fue útil?

Solución

The correct format is:

Default-customURL-568h@2x.png
Default-customURL-667h@2x.png
Default-customURL-756h@3x.png

...for 4", 4.7" and 5.5" Retina displays

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top