Reputation: 4646
I tried adding a Launch image key to myappname-info.plist with the value Test and a Test.png in the Resources folder but it doesn't seem to work.
Upvotes: 0
Views: 858
Reputation: 1115
you need to use a image named Default.png for to display image as a splash
just add the Default.png in Resource folder in your application
Upvotes: 0
Reputation: 21
Go into your plist file.
Add a new element called "Launch Image"
Then, write "Test.png"
It will then be your splash screen.
Upvotes: 2
Reputation: 113747
I don't think it's possible to change the name of the image. If you're trying to use a different image every time the app gets launched (like some of the built-in apps) it's not possible. If you're trying to use a different image for different versions of your app, you can use Targets.
What's the reason you want to do this?
Upvotes: 0