我正在使用 RestKit 发布到 uri
NSString* path = [NSString stringWithFormat:@"myPathHere"];
NSDictionary *params = [NSDictionary dictionaryWithKeysAndObjects:@"rating",[rating stringValue], nil];
[[RKObjectManager sharedManager].client post:path params:params delegate:self];
服务器将响应我的 managedObject“项目”的更新版本。
我该如何去映射这个项目。我是否使用以下委托方法?
- (void)request:(RKRequest *)request didLoadResponse:(RKResponse *)response{}
我知道从这里我可以获得响应 JSON 值,但是如何将其更改为映射对象?
任何帮助深表感谢。
谢谢!