btype
btype

Reputation: 1576

Storing data into an XML under iOS

I'm using an NSXMLParser to read data out of a XML, but how can I make my iPhone App storing data into this specific XML.

The case is that I want to create an app to display available dates and one that administrates this dates, whether they are available or not (I'm using an UISwitch to handle this).

Thanks for your answers,

btype.

Upvotes: 0

Views: 3490

Answers (2)

Steve
Steve

Reputation: 1199

There's a github project that let's you create XML DOM objects. You can save your XML to your documents folder on the phone.

https://github.com/arashpayan/apxml/

Upvotes: 0

Benoît
Benoît

Reputation: 7427

If you have small amount of data, you can save them in a plist.

See Property List Programming Guide

Upvotes: 1

Related Questions