Codec ░ delegate

275UIWebView – checking when user clicks a link

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

// intercepting web click in the webView
NSLog(@"%@, %i", [request.URL absoluteString], navigationType);
}

Don’t forget to set <UIWebViewDelegate>

289Simulating Keyboard & Mouse Events. And Key-Modifier Events 269Caching on Objective-C with NSURLCache 265Like explode(), only componentsSeparatedByString: 259The mystery of self.* – resolved? 220Linking libxml2 in Xcode