Seems like a really easy task, but I find myself struggling.. I have this JSON response:
{"data":
{"badParams":
{"arbitraryKey":"arbitraryValue",
"arbitraryKey2":"arbitraryValue2",
"arbitraryKey3":"arbitraryValue3" ,
...
}
}
}
I'd like to parse that response to NSDictionary, containing all the key:value
pairs I got in the response:
NSDictionary *response == {"arbitraryKey":"arbitraryValue",
"arbitraryKey2":"arbitraryValue2",
"arbitraryKey3":"arbitraryValue3",...}
I tried RKDynamicMapping but couldn't make it :\
Any advise?