为了RestKit
将类映射到JSON
我们使用的键值,
RKObjectMapping * userMapping = [RKObjectMapping mappingForClass:[User class]];
[userMapping mapKeyPath:@"PrimaryKey" toAttribute:@"id"];
[[RKObjectManager sharedManager].mappingProvider setMapping:usereMapping forKeyPath:@"clientUser"];
但是在android中,如果使用restlet,我们只需要@JsonProperty("PrimaryKey"),
在类中声明变量时添加即可。键值映射就完成了。
iOS restkit 是否有更简单的方法类似于android restlet?
提前致谢。