映射错误的JSON RestKit

时间:2016-05-24 12:01:15

标签: ios objective-c json restkit restkit-0.20

我使用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];

0 个答案:

没有答案