How do I loop through all objects in a NSMutableDictionary regardless of the keys?
A standard way would look like this
for(id key in myDict) { id value = [myDict objectForKey:key]; [value doStuff]; }