Parsing XML in iOS?

ios, parsing, xml

Solution

Please have a look at Touch XML, a Objective-C framework for reading and writing XML. It's usage is similar (drop-in replacement) for Apple's NSXMLDocument (which is not available for the iPhone SDK).

Problem

I need to parse simple XML coming from my webserver and store this in database. How do I do the same?

Original source