/ Published in: Objective C

Just a simple loop around a mutable dictionary object which I always seem to forget.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
for (id theKey in aDictionary) { id anObject = [[aDictionary objectForKey:theKey] retain]; }
Comments
