I have a JSON encoded data which I download using GCD. You can see how the JSON is encoded from this link: https://quiz2019.herokuapp.com/api/quizzes?token=8fda199c75cb200b0f85
I want to access every single data from that JSON but I can't achieve it. I have tried doing this:
let arrayData = try? JSONSerialization.jsonObject(with: data, options: [])
but after this I don't know how to access every data on the array. Any idea?
{}. The array is the value for keyquizzes. You are encouraged to useDecodable.