views:

102

answers:

1

Hi,

I'm working on a project for the iPad, I need to read and write to an xml file, which is also used by the counter part of the application in windows.

The problem that I have is that I've been looking around but I haven't found a way to modify an element or attribute in an xml, without having to build the whole xml again.

I saw this other post, which is basically the same problem that I have, and I also end it up in the same point as the person asking the question, NSXMLParser and TouchXML are read only and do not allowed me to modify my xml.

Any other suggestion about what can I use?

Thanks!

+1  A: 

Take a look at: http://code.google.com/p/kissxml/

Paul Lynch
Thanks for the answers, I ended it up using GDataXML, cause kissxml didn't worked either. In any case, I'm happy with GDataXML, it does the trick and is pretty easy too.
Vic