如何在iPhone/Android应用程序的后台加载多个网页?
我们想在 iPhone 应用程序的后台加载网页。
使用案例:
1) 用户打开 iPhone 应用程序并在主屏幕上看到“正在加载”图标。在后台,该应用程序加载五个网页。
2) 当五个网页全部加载完毕后,应用程序会收到通知,并将视图从主屏幕切换到其中一个网页。
这怎么能做到呢?
对于 Android 应用程序如何做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 iPhone,在屏幕外创建五个
UIWebView
实例。加载您需要的 URL。当委托方法webviewDidFinishLoad:
命中五次时,您就完成了。For iPhone, create five
UIWebView
instances off-screen & load the URLs you need. When the delegate methodwebviewDidFinishLoad:
hits five times, you are done.对于iPhone,您可以创建一个包含5个UIWebView视图组件和加载图标视图的视图控制器。将每个 UIWebView 的委托设置为控制器,将加载图标添加到控制器视图。
在“- (void)webViewDidFinishLoad:(UIWebView *)loadedWebView;”中委托方法跟踪哪个 webView 已完成加载 HTML 内容,一旦所有 5 个 webview 都完成加载其内容,请删除加载图标并将子视图中的 Web 视图之一添加到控制器视图。
for iPhone You can create a View Controller that contains 5 UIWebView View components and the loading icon view. Set the delegate of each UIWebView to the controller add the loading icon to the controllers view.
In the "- (void)webViewDidFinishLoad:(UIWebView *)loadedWebView;" delegate method keep track of which webView has finished loading the HTML content and once all 5 webviews have finished loading their content, remove the loading icon and add one of the web views at a subview to the controllers view.