有没有一种方法来捕捉一个UIWebView中的链接点击。 我想找出用户点击,但实际上没有去的网页地址。
这可能吗?
有没有一种方法来捕捉一个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 :