iOS上从网络将数据保存到文件的最简单方法
我有这样的网址: http://example.com/image.jpg
在iOS(iPhone)上将url的目标内容保存到本地文件中最简单的方法是什么?
I have URL like this: http://example.com/image.jpg
What the simplest way to save url's target content into the local file on the iOS (iPhone)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法之一如下:
One of the simplest way is the following:
一个简单的方法是使用 ASIHTTPRequest 项目。主要是因为它已经内置了所需的可达性检查,并且很容易设置和使用异步请求。
来自站点的异步下载示例:
来自站点的可达性评论:
A simple way to do this would be to use the ASIHTTPRequest project. Primarily because it already has the required reachability checks built in and it is easy to setup and use asynchronous request.
Asynchronous download example from the site:
Reachability comment from the site: