|
I have a Dictionary of Dictionaries which is being returned to me in JSON format
{ "neverstart": { "color": 0, "count": 0, "uid": 32387, "id": 73129, "name": "neverstart" }, "dev": { "color": 0, "count": 1, "uid": 32387, "id": 72778, "name": "dev" }, ...
Started by Xetius on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
NSMutableDictionary* matches = [NSMutableDictionaryHave you tried this NSDictionary method:
+ (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)....
NSDictionary* innerDictionary; NSArray* requiredIDs = ...
|