+2  A: 

There's no limit on the number of times loadHTMLString: can be called. I call it hundreds of times on the same UIWebView in my app.

Did you implement webView:shouldStartLoadWithRequest:navigationType: ? If you did, make sure you return YES.

Can Berk Güder
well don't I feel foolish now ... I added some logic to intercept requests a couple of weeks ago and forgot about it. Thanks for taking the time to reply :)
jtrim
you're welcome =)
Can Berk Güder