We would like to load web pages in the background of an iPhone app.
Use case:
1) User opens iPhone app and sees a “loading” icon on the home screen. In the background, the app loads up five web pages.
2) When all five web pages are loaded, the app is notified and switches the view from the home screen to one of the web pages.
How can this be done?
How can this be done for an Android app?
For iPhone, create five
UIWebViewinstances off-screen & load the URLs you need. When the delegate methodwebviewDidFinishLoad:hits five times, you are done.