up vote 0 down vote favorite
share [g+] share [fb]

I have a case where i'm getting formatted text with <a href ...>, <em>, <br>, &quot;, etc tags, and i'm showing it in a Text View. How can i apply these formats? If i can't, whats the most generic way to remove all these tags?

Thanks, Mustafa


No, i just want to show the formatted text in non editable NSTextView. or maybe UIWebView, will it automatically handle tags like <em>?

link|improve this question

NSTextView is a Mac OS X Cocoa class. UITextView is the iPhone equivalent. – rpetrich Jan 14 '09 at 13:20
feedback

3 Answers

up vote 3 down vote accepted

If you want editable text you will have to parse it using a library like Tidy to get just an NSString and then pass that to UITextView's -setText: method

If you need to display HTML, use UIWebView.

If you want to edit HTML as formatted text you will have to roll your own or use private API's.

link|improve this answer
feedback

UIWebView will handle all tags like a browser does. So you can use UIWebView.

link|improve this answer
feedback

How about if i want to give a rich text editable area? I can show rich text in a UIWebView (Thanks for the pointer guys).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.