How do I loop through all objects in a NSMutableDictionary regardless of the keys?
You can use [dict allValues] to get an NSArray of your values. Be aware that it doesn't guarantee any order between calls.
[dict allValues]
NSArray