vote up 0 vote down star

Is their a Cocoa container class that functions like the standard template library's multimap, i.e. letting you have multiple values for an identical key? I've been trying to sift through the Cocoa documentation, but no such luck, maybe I'm just retarded?

flag

2 Answers

vote up 4 vote down

Your options:

  • Use NSMutableSet, NSCountedSet or NSMutableArray instances as dictionary values. This works fairly conveniently, but does have the downside of exposing your data structure's mutability to all in contact with it.

  • Write your own; either as a subclass of NSMutableDictionary, or NSObject.

  • Use an existing solution such as OFMultiValueDictionary from the OmniGroup.

link|flag
vote up 1 vote down

Nope.

The easiest way to get that behaviour would be to use a dictionary whose values are NSSets, NSCountedSets or NSArrays.

link|flag

Your Answer

Get an OpenID
or

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