Reputation: 1463
I am trying to display Default.png image when application starts. So user wont have to see that black screen. But the problem is its working fine on simulator but on device its not being loaded and black screen is being shown before app loads.
What could be problem? Any help would be appreciated.
Upvotes: 0
Views: 201
Reputation: 121
first delete your app from the device. then when your app open on the xcode press on the upper bar product -> clean make sure the image are name "Default.png" run on your device! :)
Upvotes: 1
Reputation: 2046
Does it not show the Default.png at all, or just after a short period of time ?
Not at all: Try setting a new Default.png in the Organizer
After short time: When hitting build and run your app needs some time to start up, because the debugger is linking itself to your app, this causes a delay of a couple of seconds where your default.png is not displayed.
Upvotes: 0