这是一个谜:
我正在setPrimitiveValue:forKey:
上调用NSManagedObject
。关键是对象的合法,持久,建模属性。但是,setPrimitiveValue:forKey:失败,通常设置不同任意属性的值。文档说在为未建模的密钥调用setPrimitiveValue:forKey:
时会出现此行为。所以似乎Core Data认为密钥是未建模的。
奇怪的部分:
当密钥被硬编码为字符串文字时,原始值确实已成功设置。它只在键是变量时失败。我正在使用的变量恰好是从keyPath
observeValueForKeyPath:ofObject:change:context:
参数传递的
keyPath
变量与字符串文字相同。 isEqual:
返回true,哈希值相等。 keyPath
变量的类型为__NSCFString
。有谁知道为什么setPrimitiveValue:forKey:
表现得与众不同? (此行为在OS X 10.9.1上)
有更好信息的更新:
行为不当的密钥追溯到从磁盘上的文件加载的字符串。以下示例是一个孤立的案例。如果将属性字符串“mainAttr”写入磁盘并重新读入,则setPrimitiveValue:forKey:
设置错误属性的值,而不是“mainAttr”。
核心数据对象:
@interface Boo : NSManagedObject
@property (nonatomic, retain) NSNumber * mainAttr;
@property (nonatomic, retain) NSNumber * attr1;
@property (nonatomic, retain) NSNumber * attr2;
@property (nonatomic, retain) NSNumber * attr3;
@end
-
#import "Boo.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSManagedObjectContext *context = managedObjectContext();
NSString *key = @"mainAttr";
// write to disk, read back in
NSString *path = [@"~/Desktop/test.txt" stringByExpandingTildeInPath];
[key writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:NULL];
key = [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:NULL];
Boo *boo = [NSEntityDescription insertNewObjectForEntityForName:@"Boo" inManagedObjectContext:context];
[boo setPrimitiveValue:@(5) forKey:key];
NSLog(@"Boo: %@", boo);
}
return 0;
}
答案 0 :(得分:1)
您需要以下3个语句来设置值。试试吧。
[self willChangeValueForKey:key];
[boo setPrimitiveValue:@(5) forKey:key];
[self didChangeValueForKey:key];