In my swift application, I am getting a JSON string from my server side and I am storing it using:
let response = String(data: data!, encoding: .utf8)
The string contains and array of dictionaries. It looks like this:
[{"class":"Math","classToken":"SSC000000zctal","teacherName":"Last, First","room":"001","grade":"A+"},{"class":"MUSIC","classToken":"SSC000000zcY2Y","teacherName":"Last,First","room":"002","grade":"A+"}]
Is there a way for me to convert this to an actual array of dictionaries in my swift code?