我想将 RestKit 与基于文件的 URL 一起使用:
file://localhost/Users/me/somefile.json
RKURL
但是,当我使用 RestKit 启动请求时,尽管原始对象是有效NSURL
对象(completeURL
为 nil),但 RestKit 无法创建相应的对象:
NSURL *completeURL = [NSURL URLWithString:completePathWithQuery relativeToURL:theBaseURL];
if (!completeURL) {
RKLogError(@"Failed to build RKURL by appending resourcePath and query parameters '%@' to baseURL '%@'", theResourcePath, theBaseURL);
[self release];
return nil;
}
RestKit 通常支持基于文件的 url 吗?
更新:我在 RestKit发布了一个问题