Nilesh Tripathi
Nilesh Tripathi

Reputation: 100

Modified existing XML file using Objective c

I have one XML file in resources. I want to modify that XML file.

Want to attach image to it,insert data(String, Integer, float) into it and insert values in specific nodes.

How can I manage all these tasks in objectiveC? (My XML file is a actually a converted file from Excel. So modifying this file will result me a new Excel file.)

If my question is not clear, please ask.

Thank you in advance.

Upvotes: 0

Views: 448

Answers (1)

Midhun MP
Midhun MP

Reputation: 107221

For writing xml you can use libxml. It is a DOM based XMLParser.

Also you can use TouchXML for this.

Here is a simple tutorial for TouchXML.

Upvotes: 1

Related Questions