vote up 2 vote down star
1

HashTables/HashMaps are one of the most (if not the most) useful of data-structures in existence. As such, one of the first things I investigated when starting to learn programming in Cocoa was how to create, populate, and read data from a hashtable.

To my surprise: all the documentation I've been reading on Cocoa/Objective-C programming doesn't seem to explain this much at all. As a Java developer that uses "java.util" as if it were a bodily function: I am utterly baffled by this.

So, if someone could provide me with a primer for creating, populating, and reading the contents of a hashtable: I would greatly appreciate it.

flag

Technically the Objective-C language doesn't have hash tables or any kind of data structures beyond basic C-arrays. The Cocoa frameworks (in particular Foundation) do, however. – amrox Jan 23 at 21:08
thanks for pointing that out. I have thusly updated the title of my question to reflect this. – Ryan Delucchi Jan 23 at 21:15
If you look in /usr/include/objc, you will find that Objective-C does, in fact, have a hash table type. (Perhaps it's not listed in the documentation, but it is there in the headers.) – Peter Hosey Jan 25 at 9:20

3 Answers

vote up 17 vote down check

NSDictionary and NSMutableDictionary?

And here's a simple example:

NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
[dictionary setObject:anObj forKey:@"foo"];
[dictionary objectForKey:@"foo"];
[dictionary removeObjectForKey:@"foo"];
[dictionary release];
link|flag
Note that, in true object-oriented fashion, the Cocoa classes are named for "what they do" rather than "how they're implemented" as HashTable, HashMap, and friends are in Java, C#, and so on. – Chris Hanson Jan 24 at 20:04
C# calls it a Dictionary as well! – bobobobo Dec 8 at 4:51
vote up 2 vote down

In addition to NSDictionary, also check out NSSet for when you need a collection with no order and no duplicates.

link|flag
vote up 6 vote down

If you're using Leopard (and Cocoa's new Garbage Collection), you also want to take a look at NSMapTable.

link|flag
Cool, I'll check that out ... thanks. – Ryan Delucchi Jan 24 at 6:14

Your Answer

Get an OpenID
or

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