In my app the whole view contains a webview which is my secondViewController.
Now in my web view i open the eBook.
Now i want to put home button in my webview.
My firstViewController is the home page.
Is there any way to go from webView to home view ie firstViewController?
Add the home button to your HTML code and enclose it in a link to a unique URL
<a href="GoToHomePage"><img src="HomeButton.png" /></a>Then implement the
webView:shouldStartLoadWithRequest:navigationType:delegate method to catch the click: