I'm having some problems in parsing some data from a JSON to a NSDictionary, the data the JSON has inside follows the pattern:
object = (
{
"field1" = 2;
"field2" = "something";
array = {
"field3" = "anotherThing";
booleanField = true;
{
};
otherThing = "yay";
};
},
{
"field1" = 2;
"field2" = "something";
array = {
"field3" = "anotherThing";
booleanField = true;
{
};
otherThing = "yay";
};
} )
How can I create a NSArray
with 2 NSDictionaries
?
I expect I explained it simply
Thank you for your help