Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I loop through all objects in a NSMutableDictionary regardless of the keys?

share|improve this question

4 Answers

up vote 58 down vote accepted

A standard way would look like this

for(id key in myDict) {
    id value = [myDict objectForKey:key];
    [value doStuff];
}
share|improve this answer
1  
I have encountered more ways to do this wrong than you can shake a stick at. Thank you!!! – mpemburn May 17 '12 at 20:34

You can use [dict allValues] to get an NSArray of your values. Be aware that it doesn't guarantee any order between calls.

share|improve this answer
1  
I would use this one over the (id key in dictionary), especially on a mutable dictionary, since the latter throws a nasty error if the dictionary is modified while being enumerated. – sigsegv Oct 12 '10 at 13:56
"it doesn't guarantee" - this is frequently needed (most languages have a version of dictionary that DOES guarantee order) - does it in practice preserve order? – Adam Dec 25 '12 at 17:33
@Adam On MacOS X, I had pretty mixed up order (not order of insertion, not alphabetic, nothing), but consistent between calls. – jv42 Feb 24 at 10:24
Why use a NSDictionary if the mappings don't matter? – stephen Mar 26 at 3:41
@stephen Usually it matters somewhere and doesn't elsewhere. You also get the unique key constraint that might be useful for some cases. – jv42 Mar 26 at 7:56

you can use

[myDict enumerateKeysAndObjectsUsingBlock: ^(id key, id obj, BOOL *stop) {
    // do something with key and obj
}];

if your target OS supports blocks.

share|improve this answer

Another way is to use the Dicts Enumerator. Here is some sample code from Apple:

NSEnumerator *enumerator = [myDictionary objectEnumerator];
id value;

while ((value = [enumerator nextObject])) {
    /* code that acts on the dictionary’s values */
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.