i'm parsing an XML File an get the String as NSMutableString. Now I want to show this String as Text in my UIView. So, I created a TextView and set it's value to my String. The result was that I have the text with HTML Tags shown up in the TextView.
There is no problem removing the Tags from the String, but some of the Tags like the Strong-Tag are important for highlighting/formatting my Text.
Now my Question after a long Google-Search: Is there any way to display parts of my String as bold programatically?
I replaced my BR Elements with \n and it works fine for line-break. But I still dunno what I can do to display the Word between Strong-Tags as Bold by replacing them with something that works in UIView.
Sorry for my bad English and thanks for help,
greetz Zarakas