Restkit :在系统上下载文件
我很难找到如何使用 restkit
框架下载文件? 我有一个webservice
(带有base64身份验证),它返回一个文件。
当我进行常规“get”调用时,我确实收到了流(具有良好的 mime/类型),但我找不到获取数据、创建 NSData 并注册的方法我的文件。响应对象只有 bodyString
和 bodyJSON
,但没有 bodyDATA
。
I have a really hard time to find how downloading a file with the restkit
framework ?
I've got a webservice
(with base64 auth), which return a file.
When i do a regular "get" call, i did receive the stream (with good mime/types), but i can't find a way of getting the data, to make a NSData
, and register my file. The response object only have a bodyString
and bodyJSON
, but no bodyDATA
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用过 RestKit,但根据他们的 API 文档
RKResponse
对象有一个 NSData 类型的body
属性。I haven't used RestKit, but accoding to their API documentation the
RKResponse
object has abody
property that is of type NSData.