Feature request: ability to register for link presses
Currently the delegate returns true unconditionally:
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
return YES;
}
It would be nice if we could register for an event to catch this, instead of having to manually add onclick handlers to all links on a page.