KissXML provides a drop-in replacement for Apple's NSXML class culster in environments without NSXML (e.g. iOS).
It is implemented atop the defacto libxml2 C library, which comes pre-installed on Mac & iOS. But it shields you from all the nasty low-level C pointers and malloc's, and provides an easy-to-use Objective-C library.
It is designed for speed and reliability, so it's read-access thread-safe and will "just-work". That is, KissXML provides an API that follows "what-you-would-expect" rules from an Objective-C library. So feel free to do things like parallel processing of an xml document using blocks. It will "just work" so you can get back to designing the rest of your app.
KissXML is a mature library used in thousands of products. It's also used in other libraries, such as XMPPFramework (an objective-c library for real-time xml streaming). It's even used in hospital applications.
KissXML was inspired by the TouchXML project, but was created to add full support for generating XML as well as supporting the entire NSXML API.
Get started using KissXML
Learn more about KissXML
Can't find the answer to your question in any of the [wiki](https://github.com/robbiehanson/KissXML/wiki) articles? Try the **[mailing list](http://groups.google.com/group/kissxml)**.
Love the project? Wanna buy me a coffee? (or a beer :D) [![donation](http://www.paypal.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=69SPF7R4ZF69J)
- 5.0.3 - Feb 1 2016 - Removed
DDXML_NS_DECLARATIONS_ENABLED
to allow for better Swift compatibility. AddedDDXML.swift
with mappings between NSXML classes and constants and DDXML. - 5.0.2 - Jan 26 2016 - Enable Swift support via
libxml/module.modulemap
andDDXML_LIBXML_MODULE_ENABLED
macro. You can use theKissXML/libxml_module
CocoaPods subspec to enable this feature. - 5.0.1 - Jan 21 2016 - Run tests on iOS and Mac targets.