次のような JSON 形式の文字列を返す Web サービスがあります。
{"id":4,
"name":"name",
"image":1,
"contacts":[2,3]
}
連絡先配列には、他のオブジェクトへの主キーが含まれています。私はこの方法でマッピングを試みました:
RKManagedObjectMapping* mapping = [RKManagedObjectMapping mappingForClass:[OETGroup class] inManagedObjectStore:[RKObjectManager sharedManager].objectStore];
[mapping mapKeyPath:@"id" toAttribute:@"identifiant"];
[mapping mapKeyPath:@"name" toAttribute:@"name"];
[mapping mapKeyPath:@"image" toAttribute:@"image"];
RKManagedObjectMapping* contactSimpleMapping = [RKManagedObjectMapping mappingForClass:[OETContact class] inManagedObjectStore:[RKObjectManager sharedManager].objectStore];
[contactSimpleMapping mapKeyPath:@"" toAttribute:@"identifiant"];
[mapping mapKeyPath:@"contacts" toRelationship:@"contacts" withMapping:contactSimpleMapping];
[mapping connectRelationship:@"contacts" withObjectForPrimaryKeyAttribute:@"contacts"];
[mapping setPrimaryKeyAttribute:@"identifiant"];
しかし、このコードを実行するたびに、次の例外に遭遇します。
this class is not key value coding-compliant for the key .'
理由はありますか?