7

这是一个谜:

我正在调用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;
}
4

1 回答 1

1

您需要以下 3 个语句来设置值。试试看。

[self willChangeValueForKey:key];
[boo setPrimitiveValue:@(5) forKey:key];
[self didChangeValueForKey:key];
于 2014-10-19T16:11:51.717 回答