Xml.swift
A Foundation.XMLParser wrapper for swift. Written as a part of Xmmp.swift.
Features
- Calls delegate method (with
XmlElement) when an element is parsed from the provided source (Data,InputStreamor fileURL). - Stores parsed document as a variable (accessible during parsing)
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapodsTo integrate Xml.swift into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
target '<Your Target Name>' do
pod 'Xml.swift', '~> 1.0'
endThen, run the following command:
$ pod installSwift Package Manager
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift compiler. It is in early development, but Xml.swift does support its use on supported platforms.
Once you have your Swift package set up, adding Xml.swift as a dependency is as easy as adding it to the dependencies value of your Package.swift.
dependencies: [
.Package(url: "https://github.com/BiAtoms/Xml.swift.git", majorVersion: 1)
]Manually
Just drag and drop the files in the Sources folder.
Authors
- Orkhan Alikhanov - Initial work - OrkhanAlikhanov
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details