Formatting text in NSTextView - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:26:17Zhttp://stackoverflow.com/feeds/question/442755http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/442755/formatting-text-in-nstextview0Formatting text in NSTextViewMustafa2009-01-14T12:23:28Z2009-01-15T07:19:24Z
<p>I have a case where i'm getting formatted text with <code><a href ...></code>, <code><em></code>, <code><br></code>, <code>&quot;</code>, 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?</p>
<p>Thanks,
Mustafa</p>
http://stackoverflow.com/questions/442755/formatting-text-in-nstextview/442891#4428913Answer by rpetrich for Formatting text in NSTextViewrpetrich2009-01-14T13:19:31Z2009-01-14T13:19:31Z<p>If you want editable text you will have to parse it using a library like <a href="http://tidy.sourceforge.net/" rel="nofollow">Tidy</a> to get just an NSString and then pass that to UITextView's <code>-setText:</code> method</p>
<p>If you need to display HTML, use UIWebView.</p>
<p>If you want to edit HTML as formatted text you will have to roll your own or use private API's.</p>
http://stackoverflow.com/questions/442755/formatting-text-in-nstextview/442927#442927-1Answer by Mustafa for Formatting text in NSTextViewMustafa2009-01-14T13:28:12Z2009-01-14T13:28:12Z<p>No, i just want to show the formatted text in non editable NSTextView. or maybe UIWebView, will it automatically handle tags like <code><em></code>?</p>
http://stackoverflow.com/questions/442755/formatting-text-in-nstextview/443048#4430480Answer by lostInTransit for Formatting text in NSTextViewlostInTransit2009-01-14T14:04:59Z2009-01-14T14:04:59Z<p>UIWebView will handle all tags like a browser does. So you can use UIWebView.</p>
http://stackoverflow.com/questions/442755/formatting-text-in-nstextview/445914#4459140Answer by Mustafa for Formatting text in NSTextViewMustafa2009-01-15T07:19:24Z2009-01-15T07:19:24Z<p>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).</p>