Reputation: 3
Everything is in the title but I have to make myself clear :
I don't mean : how to automatically change the background of the app once it has finished launching.
What I mean is : when you first launch the app, before the first view is loaded by the iphone there is a black screen. Is it possible to change this black screen which I get when waiting for the first view to appear? I'd like to put a picture instead.
Thanks!
John
Upvotes: 0
Views: 1733
Reputation: 103
The docs here explain the different types of launch images can should use:
Upvotes: 1
Reputation: 4606
You need to set a Default.png and a [email protected] (for retina) and all the work is done for you. Or if you have payed to be a developer, download xcode 4 gm, and you can double click on the loading screen area and you can have it named what ever you wanted.
Upvotes: 2
Reputation: 171
You must specify Launch image http://developer.apple.com/library/ios/#documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html%23//apple_ref/doc/uid/TP40009252-SW9
Upvotes: 1
Reputation: 21249
You can add Default.png and it's variations to your project. This image will be displayed as splash screen during application startup (before the first view is loaded).
Search for Application Launch Images at ...
Upvotes: 1
Reputation: 4389
Just add a picture called "Default.png" to the project (size of the iPhone screen) and it'll automatically appear.
Upvotes: 1