I am developing an app that displays content that is also displayed on a web page version of the application. I am given the same marked-up text that the web page displays, but in a UITextView.
The text has HTML tags embedded, such as <BR>, <p>, and <em> for break, paragraph, and bold (emphasis), respectively.
Is there an encoding for NSString or for text in a UITextView that can render HTML tags as they would display in a web page? I want to see the break, new paragraph, bold, etc, etc, not just to strip off the html tags. Thanks in advance.