有没有一种方法可以捕获UIWebView中链接的点击。我想找出用户单击的地址,但实际上不转到页面。

这可能吗?

最佳答案

是的,您有一个视图控制器可以实现的委托方法:

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


参考:

http://developer.apple.com/iPhone/library/documentation/UIKit/Reference/UIWebViewDelegate_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/UIWebViewDelegate/webView:shouldStartLoadWithRequest:navigationType

10-08 03:47