我正在使用SDWeb
Image下载和缓存图像.我想将许多图像预加载到缓存中.
有没有一个简单的方法来做,而不必实际显示图像给用户?我正在使用此代码显示:
[anImageView setImageWithURL:[NSURL URLWithString:@"http://www.sameple.com/myimage.jpg"] placeholderImage:[UIImage imageNamed:@"loadingicon.png"]];
解决方法
[[SDWebImagePrefetcher sharedImagePrefetcher] prefetchURLs:<NArray with image URLs>];
这将处理您的并发下载问题(maxConcurrentDownloads).