1

我有一个返回数据的网络服务:

{"facebook_friends":[{"name":"Jennifer","id":"38493"},{"name":"Sarah","id":"363"},

这是我的代码:

RKManagedObjectStore* objectStore = [RKManagedObjectStore objectStoreWithStoreFilename:@"MyApp.sqlite"];
RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURLString:@"http://192.168.85.128"];
objectManager.objectStore = objectStore;

RKManagedObjectMapping *friendMapping = [RKManagedObjectMapping mappingForClass:[Friend class] inManagedObjectStore:objectStore];
[friendMapping mapKeyPath:@"id" toAttribute:@"facebook_id"];
[friendMapping mapKeyPath:@"name" toAttribute:@"name"];
friendMapping.primaryKeyAttribute = @"facebook_id";

[[RKObjectManager sharedManager].mappingProvider setMapping:friendMapping forKeyPath:@"facebook_friends"];

[objectManager loadObjectsAtResourcePath:@"/sharing/friends_facebook.json" delegate:self];

但我收到此错误:

2012-06-05 09:53:14.098 promobust[10071:1520b] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<NSManagedObject 0x6d153b0> setValue:forUndefinedKey:]: the entity Friend is not key value coding-compliant for the key "facebook_id".'

鉴于每个实体都有一个 id 属性,我不明白有什么问题 - 任何人都看到我做错了什么?

更新:朋友班:

@interface Friend : NSManagedObject
    @property (nonatomic, retain) NSNumber* facebook_id;
    @property (nonatomic, retain) NSString* name;

- (BOOL)validateName:(id *)ioValue error:(NSError **)outError;

@end

@implementation Friend
    // We use @dynamic for the properties in Core Data
    @dynamic facebook_id;
    @dynamic name;


- (BOOL)validateName:(id *)ioValue error:(NSError **)outError {
    NSLog(@"Validating Friend");
    return YES;
}

谢谢!

4

1 回答 1

0

如果我没有从我的应用程序中删除 CoreData 模型,那将会有所帮助!

它仍然无法正常工作,但出现了不同的错误 - 我将关闭此问题。

于 2012-06-05T14:22:02.763 回答