I have a strange problem with UIWebView\'s loadHTMLString, where it would only display a blank view when I called loadHTMLString with my content HTML string. It does not matter
I just had the same problem, and being a n00b, i found myself surprised that the problem was solved when i DID NOT DO
webview = [[UIWebView alloc]init];
but instead, since it was already wired up as an outlet, i just had to call
[webView loadHTMLString:mystring baseURL:nil];