Get notified about a page change in UIWebView(获取有关 UIWebView 中的页面更改的通知)
问题描述
我很好奇是否有一种方法可以检测 UIWebView
内显示网站的变化.在我正在开发的应用程序中,我们使用 UIWebView
来呈现部分功能,这些功能基本上是用户需要遵循的几个步骤.但是,在这些步骤结束时,我需要识别一个特定页面,然后应用程序需要显示不同的视图.
I'm curious if there's a way to detect a change of the displayed website inside a UIWebView
. In an app I'm working on we're using a UIWebView
to present a part of the functionality which are basically a few steps the user needs to follow. However, the will be a specific page at the end of these steps that I need to identify and after which the app needs to display a different view.
不幸的是,UIWebViewDelegate
似乎没有解决问题.
Unfortunately the UIWebViewDelegate
doesn't seem to do the trick.
推荐答案
如果用户步骤在不同的页面上是分开的,而UIWebView
需要加载不同的步骤,这确实应该可以委托方法.
If the user steps are separated on different pages, and the UIWebView
needs to load the different steps, this should indeed be possible with the delegate methods.
在这个例子中,我们说用户经历了 3 个步骤,分别命名为 step1.htm、step2.htm,最后是 step3.htm.此代码将检测用户何时到达第三步也是最后一步.
In this example, we say that the user goes through 3 steps, named step1.htm, step2.htm and finally step3.htm. This code will detect when the user reaches the third and final step.
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
NSString *URLString = [[request URL] absoluteString];
if ([URLString isEqualToString:@"http://www.example.com/step3.htm"]) {
// The user reached step 3!
}
return YES;
}
请注意,使用 absoluteString
方法可能不是找出用户浏览位置的最佳方法.看看query
、path
、parameterString
等...
Note that using the absoluteString
method might not be the best way to find out where the user is browsing. Take a look at query
, path
, parameterString
, etc...
这篇关于获取有关 UIWebView 中的页面更改的通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取有关 UIWebView 中的页面更改的通知
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01