UIWebView: when did a page really finish loading?(UIWebView:页面何时真正完成加载?)
问题描述
我需要知道,当 UIWebView 完全加载网页时.我的意思是,当所有重定向都完成并且动态加载的内容准备好时.我尝试注入 javascript(查询 document.readyState == 'complete'
),但这似乎不太可靠.
I need to know, when a web page has completely been loaded by UIWebView. I mean, really completely, when all redirects are done and dynamically loaded content is ready.
I tried injecting javascript (querying for document.readyState == 'complete'
), but that does not seem to be very reliable.
是否有来自私有 api 的事件会给我带来结果?
Is there, maybe, an event from the private api that will bring me the result?
推荐答案
我一直在寻找这个问题的答案,我从 Sebastian 的问题中得到了这个想法.不知何故,它对我有用,也许对遇到此问题的人有用.
I have been looking for the answer for this, and I got this idea from Sebastian's question. Somehow it works for me, maybe it will for those who encounter this issue.
我为 UIWebView 设置了一个委托,在 webViewDidFinishLoad 中,我通过执行 Javascript 来检测 webview 是否真的完成了加载.
I set a delegate to UIWebView and in the webViewDidFinishLoad, I detect if the webview has really finished loading by executing a Javascript.
- (void)webViewDidFinishLoad:(UIWebView *)webView {
if ([[webView stringByEvaluatingJavaScriptFromString:@"document.readyState"] isEqualToString:@"complete"]) {
// UIWebView object has fully loaded.
}
}
这篇关于UIWebView:页面何时真正完成加载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIWebView:页面何时真正完成加载?
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01