How to detect when a UIWebView has completely finished loading?(如何检测 UIWebView 何时完全完成加载?)
问题描述
我正在尝试为 UIWebView 构建一个过滤器,并且我正在努力检测 UIWebView 何时完全完成加载.我使用了以下两种方法
I am trying to build a filter for a UIWebView and I am struggiling to detect when the UIWebView has completely finished loading. I have used the following two methods
– webView:shouldStartLoadWithRequest:navigationType:
– webViewDidFinishLoad:
但问题是当页面有框架和其他内容要加载时,这些将被多次调用.
but the issue is that these will be called multiple times when a page has frames and additional content to load.
我需要知道视图何时已完全加载并且没有更多内容要获取.然后,当内容加载完毕后,我可以对照批准的 URL 列表检查页面的 URL.
What I need is to know when the view has completely loaded and there is no more content to fetch. Then when the content has loaded I can check to URL of the page against a list of approved URLS.
有什么想法吗?
推荐答案
使用UIWebViewDelegate
协议方法webViewDidFinishLoad
和webView的isLoading属性
- (void)webViewDidFinishLoad:(UIWebView *)webView
{
//Check here if still webview is loding the content
if (webView.isLoading)
return;
//after code when webview finishes
NSLog(@"Webview loding finished");
}
这篇关于如何检测 UIWebView 何时完全完成加载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检测 UIWebView 何时完全完成加载?
基础教程推荐
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01