views:

828

answers:

2

Let's say I have XML data that I just downloaded from a web app api.

  • How do I parse the data?
  • How do I populate each cell of a table view with this data?
+1  A: 

Here is a tutorial that does exactly what you are asking for. It downloads an RSS feed (which is XML), parses it, then loads the data into a table.

It should be easy to modify this for your application.

http://theappleblog.com/2008/08/04/tutorial-build-a-simple-rss-reader-for-iphone/

Jay
A: 

try using NSXMLParser. You can get the documentationhere

Nithin