Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've noticed that the method 'hashcode' for both NSMutableDictionary and NSMutableArray is giving me the hashvalue to be the number of keys irrespective of the value for NSMutableDictionary and number of objects in case of NSMutableArray.

Basically, I want to detect the change in NSMutableDictionary. My dictionary contains key/value pairs as string/NSMutableArray. And I'want to detect the change in dictionary if an item is added/deleted from any of its values.

In case if I go for calculating hash for NSMutableArray which are the values in my dictionary, it's not feasible since there's also a possibility of a different value added and existing deleted in which case simply giving me the number of items are going to remain same but the hash should be different.

Which is the best way to handle such change in dictionary?

Can anybody please help?

share|improve this question
Can't you just subclass the dictionary class and override the adding/deleting methods? – Chris Cooper Mar 31 '11 at 6:41
Hi Chris, can you please explain it more? – neha Mar 31 '11 at 6:57
1  
The dictionary is a class cluster so it can’t be easily subclassed. – zoul Mar 31 '11 at 6:58
Here is a similar question that might help: stackoverflow.com/questions/1106862/… – Nick Moore Mar 31 '11 at 8:34
@zoul: Thanks for the link! I never knew that. – Chris Cooper Mar 31 '11 at 16:36

1 Answer

up vote 1 down vote accepted

You can retain the original dictionary an test if it is equal to the new one

isEqualToDictionary:

Returns a Boolean value that indicates whether the contents of the receiving dictionary are equal to the contents of another given dictionary.

 - (BOOL)isEqualToDictionary:(NSDictionary*)otherDictionary

Docs here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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