Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有任何方法(或 RESTKit 的 fork 项目)允许对 HTTP 响应主体进行流式传输,而不是像 RESTKit 目前正在做的那样将所有内容加载到内存中。非常感谢
查看代码,RestKit 似乎不支持响应主体的流式传输。
看起来您可能需要其他解决方案。我听说 AFNetworking 非常适合做它的网络部分(我自己还没有使用它)。我已经使用“YAJL”来做一个流式 JSON 解析器。显然 AFNetworking 可以与 YAJL 挂钩...不确定这将如何工作,但您可能会调查一下。