views:

60

answers:

2

My teacher recommended TBXML so I used it, but I've noticed there are others such as the built-in NSXMLParser. Whatcha say?

+1  A: 

TBXML's site has a link to a nice article about XML parsers for iPhone. If you've never parsed XMLs before, TBXML's DOM approach will be more intuitive to you.

I've never used TBXML before, but looking at those performance charts it seems that it's quite an efficient parser. I'm actually surprised that it's memory usage isn't higher than that of the SAX parsers.

MihaiD
A: 

Here's a class that gives you one-line XML parsing: http://troybrant.net/blog/2010/09/simple-xml-to-nsdictionary-converter/

It's definitely not the most efficient parser, but it's likely one of the easiest to use.

Troy Brant
nice, but efficiency counts.
Hila's Master