4

我有一个自定义类,我将其实例用作字典中的键。问题是,有时(并非所有时间)使用我的自定义实例键之一从字典中请求值nil时,当键确实在字典中时会返回。我在网上浏览了如何使用自定义对象作为字典键,我所能找到的只是你需要实现NSCopying我已经完成的协议。

我的课看起来像这样:

// .h
@interface MyObject: NSObject <NSCopying>

@property (copy) NSString* someString;
@property (copy) NSString* otherString;
@property int someInt;

+ (instancetype) objectWithString:(NSString*)str;
- (id) copyWithZone:(NSZone*)zone;
@end

// .m
@implementation MyObject

@synthesize someString;
@synthesize otherString;
@synthesize someInt;

+ (instancetype) objectWithString:(NSString*)str {
   id obj = [[self alloc] init];
   [obj setSomeString:str];
   [obj setOtherString:[str lowercaseString];
   [obj setSomeInt:0];
   return obj;
}

- (id) copyWithZone:(NSZone*)zone {
   id other = [[[self class] allocWithZone:zone] init];
   [other setSomeString:self.someString];
   [other setOtherString:self.otherString];
   [other setSomeInt:self.someInt];
   return other;
}
@end

然后我把其中一些东西放在一个可变字典中,如下所示:

MyObject* key1 = [MyObject objectWithString:@"Foo"];
MyObject* key2 = [MyObject objectWithString:@"Bar"];
NSNumber* value1 = [NSNumber numberWithInt:123];
NSNumber* value2 = [NSNumber numberWithInt:456];

NSMutableDictionary* theDict = [[NSMutableDictionary alloc] init];
[theDict setObject:value1 forKey:key1];
[theDict setObject:value2 forKey:key2];

现在我想做的只是从字典中弹出一个键/值对,所以我这样做:

MyObject* theKey = [[theDict allKeys] firstObject];
NSNumber* theValue = [theDict objectForKey:theKey];

这就是我遇到问题的地方。 大多数情况下,这工作正常。但是,有时会objectForKey:theKey返回nil. 我在我的代码中放了一个断点,并且可以确认它theKey确实在theDict.

我在这里做错了什么?

4

1 回答 1

6

您还应该在您的自定义对象上实现-isEqual:和。-hash

更多信息: Apple 文档NSHipster 文章

您必须这样做的原因是当您将它们放入字典时可以复制键,并且默认实现isEqual只是进行指针比较。

于 2014-01-13T16:42:40.193 回答