Two possible reasons
1> either you did not set the delegate Set the delegate of your web view to your class i.e. to the viewDidLoadmethod
webView.delegate = self;
(if the webView is taken in an xib file, you need to install the delegate from the sib file)
2 > UIWebViewDelegate
.. ,
@interface RootViewController : UIViewController<UIwebViewDelegate>