I have a little Problem with JSON to NSDictionary, and hope someone can help me:
From an URL-Request i get JSON Objects like this:
{
page = 1;
results = (
{
adult = 0;
"vote_average" = 5;
"vote_count" = 100;
},
{
adult = 0;
"vote_average" = 3;
"vote_count" = 10;
},
{
adult = 0;
"vote_average" = 1;
"vote_count" = 300;
},
);
"total_pages" = 1;
"total_results" = 3;
}
Now I need to parse this JSON Objects into NSDictionary. My problem is that there are more (this time 3) JSON-Objects and each Object has same keys. I think i need to create a NSDictionary for each JSON Object, do I? ..is there a simple way to do this? Or is there another "usual way" to handle such a situation?
Thanks fore Help!