https://github.com/fourplusone/kissxml
📦 KissXML
https://github.com/fourplusone/kissxml
Last synced: 12 months ago
JSON representation
📦 KissXML
- Host: GitHub
- URL: https://github.com/fourplusone/kissxml
- Owner: fourplusone
- License: other
- Created: 2020-04-20T20:26:10.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T20:31:23.000Z (about 6 years ago)
- Last Synced: 2025-01-29T10:42:28.704Z (over 1 year ago)
- Language: Objective-C
- Size: 45.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE.txt
Awesome Lists containing this project
README
# [KissXML Package](https://github.com/fourplusone/KissXML)
__KissXML packaged as Swift Package__
## About KissXML
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](https://github.com/robbiehanson/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.
### Getting Started
The minimum deployment target is iOS 8.0 / macOS 10.10 / tvOS 9.0 / watchOS 2.0.
```objc
// Swift
import KissXML
// Objective-C on iOS 8+ with `use_frameworks!`
@import KissXML;
```
## Credits
KissXML was created by [robbiehanson](https://github.com/robbiehanson) an packaged by [Matthias Bartemleß](https://github.com/fourplusone)