我有以下方法:
- (void)httpGET:(NSString*)resourcePath withParameter:(NSDictionary*)params withRequestID:(RequestID)requestID {
if ([RKClient sharedClient] == nil)
[RHCHTTPController initRKSharedClient];
RKURL *url = [RKURL URLWithBaseURLString:BaseURL resourcePath:resourcePath queryParameters:params];
[[RKClient sharedClient] get:[url absoluteString] usingBlock:^(RKRequest *request) {
NSLog(@"Request: %@", [url absoluteString]);
request.onDidLoadResponse = ^(RKResponse *response) {
[self.delegate responseArrivedWithRKResponse:response withRequestID:requestID];
};
request.onDidFailLoadWithError = ^(NSError *error) {
[self.delegate requestDidFailWithRequestID:requestID andError:error];
};
}];
}
发送获取请求。那么如何使用RKObjectManager映射JSON-Response?
MAIK
答案 0 :(得分:2)
你看起来有点深。
查看使用其中一个“loadObjectsAtResourcePath”调用。或者也许是“getObject”调用之一,它们都是RKObjectManager的一部分。
此外,在RestKit的单元测试中,如何使用这些调用的优秀资源也是正确的。非常有帮助。