我正在使用CloudFront CDN为移动应用程序提供图像。
我在计算机上的浏览器上测试了下载速度,图像(大约60 kb)几乎立即出现。
在iOS应用程序中,下载时间为0.3 - 0.4秒。 要下载图像,我在后台线程上使用dataWithContontentsOfURL方法。
NSData *imageData = [NSData dataWithContentsOfURL:categoricalSystemURL];
为什么图像在浏览器中的加载速度要快得多? 有没有更快的方式在iPhone上下载图像?
答案 0 :(得分:0)
尝试这个词dataWithContentsOfURL and imageWithData take 84% of the whole loading time
将Nsdata编码到Uiimage需要一些时间。