Formatting text in NSTextView - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T08:26:17Z http://stackoverflow.com/feeds/question/442755 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/442755/formatting-text-in-nstextview 0 Formatting text in NSTextView Mustafa 2009-01-14T12:23:28Z 2009-01-15T07:19:24Z <p>I have a case where i'm getting formatted text with <code>&lt;a href ...&gt;</code>, <code>&lt;em&gt;</code>, <code>&lt;br&gt;</code>, <code>&amp;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#442891 3 Answer by rpetrich for Formatting text in NSTextView rpetrich 2009-01-14T13:19:31Z 2009-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 -1 Answer by Mustafa for Formatting text in NSTextView Mustafa 2009-01-14T13:28:12Z 2009-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>&lt;em&gt;</code>?</p> http://stackoverflow.com/questions/442755/formatting-text-in-nstextview/443048#443048 0 Answer by lostInTransit for Formatting text in NSTextView lostInTransit 2009-01-14T14:04:59Z 2009-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#445914 0 Answer by Mustafa for Formatting text in NSTextView Mustafa 2009-01-15T07:19:24Z 2009-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>