一部の JSON データを RestKit にマップしようとしていますが、これまでのところ正しく行うことができませんでした。データは、日付と登録の階層セットです。次のようになります (変更することはできません)。
{
"days":
{
"2012-10-29": {
"2106303": {
"activityCode": "LU",
"approved": false,
"hours": 0.5,
"description": "some description",
},
"2106304": {
"activityCode": "VF",
"approved": false,
"hours": 7.5,
"description": "some other description",
}
},
"2012-10-30": null,
}
}
私のコードは次のようになります。
- (void)setupWeekMappingForManager:(RKObjectManager *)manager
{
RKObjectMapping *registrationMapping = [RKObjectMapping mappingForClass:[Registration class]];
registrationMapping.forceCollectionMapping = YES;
[registrationMapping mapKeyOfNestedDictionaryToAttribute:@"registrationNumber"];
RKObjectMapping *dayMapping = [RKObjectMapping mappingForClass:[Day class]];
dayMapping.forceCollectionMapping = YES;
[dayMapping mapKeyOfNestedDictionaryToAttribute:@"date"];
// how can this relationship be mapped?
[dayMapping mapKeyPath:@"(date)." toRelationship:@"registrations" withMapping:registrationMapping];
[manager.mappingProvider setMapping:dayMapping forKeyPath:@"days"];
}
喜んで元に戻りますが、2 つのタイプの関係をマッピングする良い方法を見つけることができません。
正しい方向へのプッシュは大歓迎です。
よろしく、 トミー