How do I loop through all objects in a NSMutableDictionary regardless of the keys?
you can use
[myDict enumerateKeysAndObjectsUsingBlock: ^(id key, id obj, BOOL *stop) { // do something with key and obj }];
if your target OS supports blocks.