I have set up some gesture recognition in an app that I\'m building. One of the gestures is a single finger single tap, which hides the toolbar at the top of the screen. Works g
You can use the UIWebViewDelegate protocol's -webView:shouldStartLoadWithRequest:navigationType: method.
UIWebViewDelegate
If the navigationType is UIWebViewNavigationTypeLinkClicked, you can get the URL for the click by checking [request URL].
navigationType
UIWebViewNavigationTypeLinkClicked
[request URL]