我有一个自定义类,我将其实例用作字典中的键。问题是,有时(并非所有时间)使用我的自定义实例键之一从字典中请求值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
.
我在这里做错了什么?