I have a large NSDictionary that I need to loop through and create separate NSArrays. Here are the contents:
NSDictionary
NSArray
( { id =
NSString *key; for(key in someDictionary){ NSLog(@"Key: %@, Value %@", key, [someDictionary objectForKey: key]); }