Associative arrays in Objective-C

bauhsoj

Registered
Does objective-c offer the ability to natively create associative arrays such as those in PHP, Perl, or JavaScript?
 
You also might want to look at NSDictionary which is a bit closer to what you want in practice.
 
So which do you think would be best to start with for someone who programs primarily in PHP? NSDictionary or hash tables?

I am pretty new to objective-c and Cocoa, but I use associative arrays in almost every aspect of my code so I need to understand an equivalent structure in objective-c. :D
 
Back
Top