How do I loop through all objects in a NSMutableDictionary regardless of the keys?
You don't need to assign value to a variable. You can access it directly with myDict[key].
myDict[key]
for(id key in myDict) { NSLog(@"Key:%@ Value:%@", key, myDict[key]); }