异步缓存json
我正在开发一个 iOS 应用程序,它从我的服务器的 json feed 获取数据。解析字符串没有问题...但是,我在异步下载字符串然后缓存它时遇到了问题。我找到了SDURLCache,但不知道如何实现它。最好的方法是什么?
I'm developing an iOS app which gets its data from a json feed of my server. Parsing the string is no problem... However, I am having trouble downloading the string asynchronously and then caching it. I found SDURLCache but do not know how to implement it. What is the best way to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将文件下载到磁盘(同步):
对于异步操作,您应该使用 NSURlConnection。打开连接后,
您会在此回调中收到数据:
You could download the file to disk (synchronously):
For asynchronous operations, instead, you should use NSURlConnection. After opening the connection,
you receive data in this call back: