Any XML binding frameworks for Objective-C? Any XML binding frameworks for Objective-C? xml xml

Any XML binding frameworks for Objective-C?


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


There seems to be a bit of confusion about SAXy. It is not another DOM library like NSXMLDocument or KissXML.

SAXy targets a different problem space, that of binding XML directly to domain objects using the lighter-weight event driven model. It's more akin to JAXB or Castor in the Java world.

It's closest relative in the Objective-C realm is the modeling code in RestKit. Although, RestKit advertises XML support, it's largely been dropped from the current version. SAXy was written to fill the void.