set delegate to self then you need to implement the delegate
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
return YES;
}
and also don't forget to confirm the protocol in .h file like this
@interface YourViewController : UIViewController