Parsing XML has always bothered me in Swift. The NSXMLParser class doesn’t actually parse the XML structure into Swift objects, rather it traverses the XML structure, pinging its delegate whenever it discovers something new, like an XML element or attribute, and then leaves it up to you to make something of it.
There are several solutions out there for parsing XML to Swift objects, such as AEXML or SwiftyXML, but nothing seemed to do exactly what I was after, or had problems in Swift 3.
I decided to write my own XML Parser, and I’ve called it SwiftXML. Check it out here!
Hi Craig, Thanks for your develop and I would like to contribute with you, I did to extra function that I would like you will add to your develop, please let me know how can I contribute to you.
Regards
Jaime Acevedo
jaime.acevedo@gmail.com
Great! Did you fork the repo on github? Feel free to make a pull request. I look forward to checking it out!