XMLParsing
XMLParsing copied to clipboard
XMLEncoder & XMLDecoder using the codable protocol in Swift 4.2
There is XML that I am looking at that has an element with HTML inside it. I am not sure how to get it. Do I use String, or do...
`some string value` ends up only decoding as a string. I would expect to be able to have a struct like: ``` struct SomeElement: Codable { let value: String let...
[!] The platform of the target ` ` (tvOS 13) is not compatible with `XMLParsing (0.0.2)`, which does not support `tvOS`.
This helps when you use XMLParsing via Carthage, otherwise deployment target defaults to latest iOS version.
I'd like to use this library for communicating with SOAP web-services. For those, you often encounter namespaces in SOAP requests, e.g.: ``` FOO BAR BAZ 302 654 2852 1 newnew08234...
no fun for people copy-pasting 😁
Hi! I've this XML Structure: ``` 1 1 207 ``` And my code to Parse this: ``` struct ModuleResponse: Codable { let result_id: Int? let result_text: String? let timeout: Int...
Thank you very much for your work. I think I have found a little bug, decoding a hexadecimal value can be rounded, for example 0x400ff040 returns 0x400ff000. The bug is...
Closes #28