I am developing an iPhone application using restful web service.I want to implement splash screen through web service. Because I want to change that image dynamically. Is there any method for implementing this?
the Splash image is your Default image check the linked url for
Providing Launch Images for Custom URL Schemes
But, this Default image, just shows for a little while, 2 seconds max, so by the time you do the fetching of your image, the Default "splash" image is long gone,
also, you see this Default image when you have your app closed [not in background], so in order to see your Default image you will have to delete your app from memory every time is closed...
Could you fetch the image and show it the next time the app is opened?
or you could show an image in a modal view? every time the app starts?
;)