Peter Ent

Results 2 issues of Peter Ent

Let's say I have this simple XML: ```swift let sample = """ Peter Ent Atlanta, GA """ ``` And I wish to decode it into the following Swift classes: ```swift...

question

If I instantiate a Codable object, is there way to decode into that specific instance, rather than supplying the Type? try? decoder.decode(into: myCodableObject) Regards Peter