Enumerate NSDictionary with keys and objects, PHP style

Viewed 27532

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 similar to the PHP foreach enumerator like:

foreach ($dictionary as $key => $value);
3 Answers
Related