I come from Android dev, so sorry if I\'m missing obvious iOS concepts here.
I have a JSON feed that looks like:
{\"directory\":[{\"id\":0,\"fName\":\"...\
Use following code:
NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
This will covert json data onto NSDictionary, which is similar to hashmap on android. I think this will help you. :)