Good morning
So after few days programming in Swift/SwiftUI with basic JSON APIs I would like to dig deeper for how to load more complex JSONs and how to do JSON POSTs.
Currently I was only able to load simple JSONs like:
[
{
id: 1,
name: "A"
},
...
]
Couldn't figure out how to load a dictionary successfully as I didn't find any examples, despite when trying to load a nested JSON.
Are there any good introductions about GET/POST JSONs in Swift that is somehow easy understandable?
Not sure if one of those courses subscription might be a good fit like codewithchris.com/hackingwithswift.com and the like....as you don't see upfront what exactly is covered....
thanks in advance richard