Quote:
Originally Posted by wuf810
Check out XMLParser example app from Apple. It will show you how to achieve this.
|
Remember there are two ways to parse an XML file.
1. Use the a DOM tree approach which is what you are trying todo
2. Use a streaming API like the example shown in the apple tutorial.
Try the streaming api as in the apple example, its not hard at all to set up.
Basically, its a set up to have events triggered when certain events occur in the xml file.