XMLCoder
XMLCoder copied to clipboard
Easy XML parsing using Codable protocols in Swift
Hi everybody! I found a very strange problem. My goal is to load a simple XML file from the web. I am downloading data and cleaning it. At the end,...
Cocoapods podspec repo contains 0.14 as latest XMLCoder version. @Joannis can you please update podspec repo with recent releases?
Bumps [activesupport](https://github.com/rails/rails) from 6.1.4.1 to 6.1.7.3. Release notes Sourced from activesupport's releases. v6.1.7.3 Active Support Implement SafeBuffer#bytesplice [CVE-2023-28120] Active Model No changes. Active Record No changes. Action View Ignore certain...
Hi ! Following the example given in the documentation: ``` struct Book: Codable { @Element var id: Int } ``` I tried to create an instance of a Book: `let...
Dear All, Thanks for this amazing project! I struggle to extract **Text Part 2** from the following example. ``` Text Part 1 Text Part 3 Text Part 2 ``` My...
At present to instantiate a property that is wrapped with the `@Attribute` property wrapper whose wrapped value conforms to one of the many `ExpressibleBy`(value type)`Literal` such as `ExpressibleByStringLiteral`: ```swift struct...
```swift public struct PageObject: Codable { @Element var pageContent: [PageContent] enum CodingKeys: String, CodingKey { case pageContent = "PageContent" } } ``` produces following error: ``` typeMismatch(Swift.Dictionary, Swift.DecodingError.Context(codingPath: [CodingKeys(stringValue: "PageObject",...
It doesn't work as optional so i can parse tags like `` only parse tags like ``
When creating a struct with `@Element` and `@Attribute` and then try to create an `init () {}` you always get the error from the title even though all are initialised...