How to add a web view to the root view controller in the split view based application.
The following is the code which i am using,
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:@”rightview”ofType:@”html”]isDirectory:NO]]];
but in the output its not producing any output.
As it looks like an local html, you can also try doing it with loadHTMLString method like
load htmlString with the html content of your bundle html file.