我天真地尝试遵循使用 RestKit 0.20 映射我的 CoreData 类之一的指南
#import <RestKit/RestKit.h>
...
RKObjectMapping *mymap =
[RKObjectMapping mappingForClass: NSClassFromString(@"MY_CLASS")];
[mymap mapAttributes:@"field1", @"field2", nil];
但
'RKObjectMapping' 没有可见的@interface 声明选择器'mapAttribute'
如果我键入[mymap map
,我只会在完成列表中看到这两个函数
id mappingForDestinationKeyPath:(NSString *)
id mappingForSourceKeyPath:(NSString *)
我究竟做错了什么 ?
另一个例子,当我尝试使用共享RKObjectManager
[[RKObjectManager sharedManager].mappingProvider setMapping:map forKeyPath:@"/"];
找不到会员mappingProvider