Simple XML Parsing

Is there an easy way to parse XML in an iPhone application?

I use NSXMLParser and I heard about libxml2 - I am right in stating that these are my only two options.

I just don’t want to go along a long road when there is something simple that I can use.

0
source share
2 answers

This blogpost gives an excellent overview of the most common XML parser available for iPhone (built-in and third-party)

+1
source

There is also TouchXML , which is nice and straightforward.

+2
source

All Articles