I have an app with a UIWebView
inside a UIViewController
. I load HTML from a web service as a string like this:
self.webView loadH
Add this line ( self.webview.delegate = self; )
For Example in viewController.m
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil];
[self.webview loadHTMLString:htmlString baseURL:nil];
self.webview.delegate = self;