I have an app with a UIWebView inside a UIViewController. I load HTML from a web service as a string like this:
UIWebView
UIViewController
self.webView loadH
If you already setup properly the UIWebViewDelegate, simply doing
self.webView loadHTMLString:_string baseURL:nil self.webView.delegate = self;
should work