What is the proper way to decode UTF-8 encoded html and present the text in a UITextView while keeping the HTML formatting?
I have the following title:
<p><strong>Pasta and Pizza</strong><br />
After UTF-8 decoding:
<p><strong>Pasta and Pizza</strong><br />
Finally I would like to present the text in a UITextView that respects the HTML tags:
Pasta and Pizza
I am pulling this content directly from a database, so I simply can’t pull the html page into a UIWebView. (I am not opposed to using a UIWebView. I simply don’t know how to implement that either.)