vote up 3 vote down star
1

In my app, I have a NSDictionary whose keys should be instances of a subclass of NSManagedObject.

The problem, however, is that NSManagedObject does not implement the NSCopying protocol which means that no Core Data objects / instances of NSManagedObject can be used as dictionary keys even though the -[hash] method works fine for them.

Was should I do?

flag

75% accept rate

3 Answers

vote up 7 vote down check

You have two options:

  1. Stick the object ID into a dictionary instead and work with that. NSManagedObjectID is NSCopying-compliant so will properly handle this
  2. NSDictionary's implementation boils down roughly to this internally:

    - (void)setObject:(id)anObject forKey:(id)aKey
    {
      id copiedKey = [aKey copy];
      CFDictionarySetValue(self, copiedKey, anObject);
      [copiedKey release];
    }

So you can just use CFDictionarySetValue() directly if you like.

link|flag
vote up 0 vote down

Could you create a wrapper class, that contains a reference to the instance of NSManagedObject that you want to use as a dictionary key? You could then make this wrapper class implement NSCopying, along with a hash method (perhaps just calling the NSManagedObject's hash method), and use this wrapper as the dictionary key.

link|flag
vote up 0 vote down

I suggest to use [[[myManagedObject objectID] URIRepresentation] absoluteString] as your key.

link|flag
2  
There's no point to all this. NSManagedObjectID can be used fine as-is as it implements NSCopying. – Mike Abdullah Sep 30 at 13:43

Your Answer

Get an OpenID
or

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