I need to download an XML file, parse it and display it in a "multi-level" UITableView. The XML file looks like this:
Code:
<?xml version="1.0" encoding="utf-8" ?>
<persons>
<person id="1" name="Adam Smith">
<sport id="1" name="discus" result="10" />
<sport id="2" name="longjump" result="15" />
<sport id="3" name="javelin" result="18" />
</person>
<person id="2" name="John Williams">
<sport id="2" name="longjump" result="7" />
<sport id="3" name="javelin" result="21" />
</person>
</persons>
However, I can't find a simple code example! Yes, I have read the
SeismicXML sample code, and I've read
a tutorial about Core Data, but these cover more topics than what I need. I just need to download an XML file and display it in a "multi-level" UITableView.
Can someone please help me?