views:

405

answers:

1

essetially I just want formatted HTML rendered in the UITextView, should I be using the undocumented setContentToHTMLString? I feel that I should not be using that, I have tried it, but the text (after being rendered as HTML) does not scroll properly, which is why I suspect its not documented...

Should I just use a UIWebView? Can I just pass it arbitrary HTML and expect it to render it?

+1  A: 

You can display arbitrary HTML in a UIWebView using loadHTMLString:baseURL: (see here).

Chris Doble