Objective-C中如何区分链接请求

发布于 2024-11-09 06:47:34 字数 274 浏览 0 评论 0原文

我在 UIViewController 中有以下方法:

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType.

我的 webview 在视图中有两个链接;我希望能够区分两者,以便我知道用户单击了哪一个。

有人知道怎么做吗?

I have the following method in a UIViewController:

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType.

My webview has two links in the view; I want to be able to distinguish between the two of them so that I know which one the user clicked on.

Does anyone know how to?

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-11-16 06:47:34

您必须从 NSURLRequest 中提取 url 字符串:

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
    NSURL *requestUrl = [request URL];
    NSString *currentPath = [requestUrl path];
...
}

然后使用 currentPath 与您的两个 URL 进行比较。如果这些 URL 未知,您应该解析 html 文件以在其中找到它们。您无法通过 UIWebView 访问 HTML 文档结构,因为它非常复杂。

You must extract a url string from NSURLRequest:

- (BOOL)webView:(UIWebView*)webView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType {
    NSURL *requestUrl = [request URL];
    NSString *currentPath = [requestUrl path];
...
}

Then use currentPath to compare with your two URLs. If those URL are unknown you should parse your html file to find them in it. You cannot get access to HTML document structure through UIWebView because it is extremely complicated.

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