vote up 0 vote down star

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

flag

61% accept rate
NSTextView is a Mac OS X Cocoa class. UITextView is the iPhone equivalent. – rpetrich Jan 14 at 13:20

4 Answers

vote up 3 vote down check

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up -1 vote down

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

link|flag
Respond to people by adding comments, not by adding new answers. – Chris Hanson Jan 14 at 23:28

Your Answer

Get an OpenID
or

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