I know you can Enumerate the keys or values of NSMutableDictionary using NSEnumerator. Is it possible to do both together? I\'m looking for something s
NSMutableDictionary
NSEnumerator
Now much easier:
for (NSString * key in dict) { id/* or your type */ value = dict[key]; ... }