UIWebView历史If语句

发布于 2024-12-04 09:13:45 字数 202 浏览 0 评论 0原文

如何检测 UIWebView 中最后查看的页面?基本上我想说,if(在 if 语句中)UIWebView 中查看的最后一个页面是 @"http://www.example.com" 并且当前页面UIWebView页面是@“http://www.lalala.com”然后……以及我的行动。

谢谢你,

詹姆斯

How can I detect the last page viewed in a UIWebView? Basically I want to say, if (in an if statement) the last page viewed in the UIWebView was @"http://www.example.com" and the current UIWebView page is @"http://www.lalala.com" then …… and my action.

Thank you,

James

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

国际总奸 2024-12-11 09:13:45

在 webview delegate 的 webViewDidFinishLoad: 中,获取最后加载页面的 url(通过检查 webview 的 request 属性)并将其存储在某个属性中。然后在 if 语句中使用该属性。

编辑:添加一个属性(让我们说 UIWebView 委托类):

@property (nonatomic, retain) NSURL* lastLoadedURL;

然后添加此方法:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
self.lastLoadedURL = [webView.request URL];
}

因此,每当您需要检查最后加载的页面时,您都会执行以下操作:

if([[self.lastLoadedURL lastPathComponent] isEqualToString:@"somepage.html"]) {
//do stuff
}

或者如果您不在 UIWebView 委托类中,您需要将 self.lastLoadedURL 替换为 (delegateClassInstance).lastLoadedURL。

In the webview delegate's webViewDidFinishLoad:, get the url of the last loaded page (by examining webview's request property) and store it in some property. Then use that property in your if statement.

Edit: add a property (lets say to the UIWebView delegate class):

@property (nonatomic, retain) NSURL* lastLoadedURL;

Then add this method:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
self.lastLoadedURL = [webView.request URL];
}

So whenever you need to check the last loaded page you'd do something like this:

if([[self.lastLoadedURL lastPathComponent] isEqualToString:@"somepage.html"]) {
//do stuff
}

or if you're not in the UIWebView delegate class, you'd need to replace self.lastLoadedURL with (delegateClassInstance).lastLoadedURL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文