我使用HTTP请求开发一些应用程序。服务器的所有响应都很棒。并且易于映射。但最后一个非常糟糕。
"positions": {
"google": {
"some not mutable key1": 3,
"some not mutable key2": 12,
"some not mutable key3": 5,
"some not mutable key4": 7
}
}
}
我需要在NSArray或NSDictionary中映射这个响应才能使用它们,但是我不能这样写:
NSDictionary *mappingDictionary = @{
@"attrs.positions.google" : @"googleArray"
};
RKObjectMapping *taskMapping = [RKObjectMapping mappingForClass:[SMPosition class]];
[taskMapping addAttributeMappingsFromDictionary:mappingDictionary];