There are a couple of different ways to remove HTML tags from an NSString in Cocoa.
HTML tags
NSString
Cocoa
One way is to render the string into an
Take a look at NSXMLParser. It's a SAX-style parser. You should be able to use it to detect tags or other unwanted elements in the XML document and ignore them, capturing only pure text.