iphone – iOS:从网址下载图片并保存在设备中

iphone – iOS:从网址下载图片并保存在设备中,第1张

概述我试图从url http://a3.twimg.com/profile_images/414797877/05052008321_bigger.jpg下载图像 我使用下面的代码,但图像不保存在设备中。我想知道我做错了什么。 NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://a3.tw 我试图从url http://a3.twimg.com/profile_images/414797877/05052008321_bigger.jpg下载图像

我使用下面的代码,但图像不保存在设备中。我想知道我做错了什么。

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://a3.twimg.com/profile_images/414797877/05052008321_bigger.jpg"]]; [NSURLConnection connectionWithRequest:request delegate:self]; NSArray *paths = NSSearchPathForDirectorIEsInDomains(NSdocumentDirectory,NSUserDomainMask,YES); Nsstring *documentsDirectory = [paths objectAtIndex:0]; Nsstring *localfilePath = [documentsDirectory stringByAppendingPathComponent:@"pkm.jpg"]; NSData *thedata = NulL; [thedata writetofile:localfilePath atomically:YES]; UIImage *img = [[UIImage alloc] initWithData:thedata];
解决方法 如果你将data设置为nil,你期望它写到磁盘什么?

你可以使用的是NSData * theData = [NSData dataWithContentsOfURL:yourURLHere];从磁盘加载数据,然后使用writetofile:atomically:保存它。如果你需要更多的控制加载进程或在后台,请查看NSURLConnection的文档和相关的指南。

总结

以上是内存溢出为你收集整理的iphone – iOS:从网址下载图片并保存在设备中全部内容,希望文章能够帮你解决iphone – iOS:从网址下载图片并保存在设备中所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1087814.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存