Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any XML binding frameworks for Objective-C?

Is there any XML binding framework for Objective-C?

I've tried a few searches on google and didn't find anything yet.

I'm looking for something that reads from a XSD/DTD/XML and generate:

  • the Model classes to store values
  • the actual parser that reads from the XML and populate the model classes
like image 777
Alexandre L Telles Avatar asked Feb 14 '10 19:02

Alexandre L Telles


Video Answer


1 Answers

Here is a vast and simple tutorial that helps to read as well as create xml documents using GDataXMLParser http://www.raywenderlich.com/725/how-to-read-and-write-xml-documents-with-gdataxml

like image 53
ArunGJ Avatar answered Oct 04 '22 05:10

ArunGJ