资 源 简 介
A Cocoa framework for working with XML-data. Like JDOM or XOM, but in Objective-C.
What is DOM?
DOM stands for Document Object Model and can be thought as a way of describing an XML-document in terms of a tree of objects. A document has nodes, which in turn contains other nodes, all represented by objects. For those of you who have programmed JavaScript, the document-object is a kind of DOM, representing all (well, almost), tags and other things on the web-page, in Mozilla and Safari this is actually true. DOM is a recommendation from W3C (www.w3c.org/DOM).
What is Iconara DOM?
Iconara DOM is a W3C DOM compliant framework for manipulating XML-data. It defines the core module, plus a basic implementation of the XPath module.
The framework was build with the same philosophy as JDOM and XOM: it"s better to integrate the DOM model into the language, than than being 100% compliant. In my humble opinion, the W3C DOM-interfaces are ugly as he