I'm trying to parse a big load of JSON, and it turns out its a big array consisting of 20 dictionaries. And Im just wondering how i'd parse it into multiple NSDictionaries? I'm used to just doing this with JSON:
NSDictionary *tDic = [NSJSONSerialization JSONObjectWithData:responseObject options:kNilOptions error:&error];
But the JSON I'm trying to parse looks like this:
[{
"key": "value"
"key": {
"key": "value"
"key": "value"
}
},
{
"key": "value"
"key": {
"key": "value"
"key": "value"
}
},
{
"key": "value"
"key": {
"key": "value"
"key": "value"
}
}]
Can anyone help?