关于磁盘映像缓存的AFNetworking 3.0

时间:2016-03-28 20:24:44

标签: ios afnetworking image-caching afnetworking-3

是否可以在 AFNetworking 中将图像缓存在磁盘上超过会话?例如一周或一个月。在我的项目中,我使用了 SDWebImage AFNetworking ,但前几天我发现 AFNetworking 具有与 SDWebImage ,所以删除了 SDWebImage 并编写了这样的代码来将图像存储在磁盘上:

for ImageView

NSURLRequest *imageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]
                                              cachePolicy:NSURLRequestReturnCacheDataElseLoad 
                                          timeoutInterval:60];
[imageView setImageWithURLRequest:imageRequest placeholderImage:placeholderImage success:nil failure:nil];

下载图片以备将来使用

NSURLRequest *imageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]
                                              cachePolicy:NSURLRequestReturnCacheDataElseLoad 
                                          timeoutInterval:60];
[[AFImageDownloader defaultInstance] downloadImageForURLRequest:imageRequest success:nil failure:nil];

获取下载的图片

NSURLRequest *imageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]
                                              cachePolicy:NSURLRequestReturnCacheDataElseLoad 
                                          timeoutInterval:60];
UIImage *image = [[AFImageDownloader defaultInstance].imageCache imageforRequest:imageRequest withAdditionalIdentifier:nil];

但所有这些只能在每个会话中工作,在我加载所有图像后我关闭互联网并重新启动我的应用程序,结果 - 缓存中没有图像。

此外,我尝试在AppDelegate中添加此类代码:

NSURLCache *sharedCache = [[NSURLCache alloc] initWithMemoryCapacity:2 * 1024 * 1024
                                                        diskCapacity:100 * 1024 * 1024 
                                                            diskPath:nil];
[NSURLCache setSharedURLCache:sharedCache];

但我仍然无法缓存图片的时间超过会话。 (对不起我的英文)

1 个答案:

答案 0 :(得分:6)

图像使用iOS内置的标准NSURLCache缓存在磁盘上,这意味着如果您的响应包含正确的缓存标头,那么这些项目应该最终位于缓存中的磁盘上。因此,例如标题应如下所示:

"Accept-Ranges" = bytes;
"Cache-Control" = "max-age=604800";
Connection = close;
"Content-Length" = 3808;
"Content-Type" = "image/png";
Date = "Tue, 29 Mar 2016 19:55:52 GMT";
Etag = "\"5630989d-ee0\"";
Expires = "Tue, 05 Apr 2016 19:55:52 GMT";
"Last-Modified" = "Wed, 28 Oct 2015 09:42:53 GMT";
Server = nginx;

如果您已下载图像并希望从磁盘缓存中获取它,请执行以下操作:

NSURLRequest *imageRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:url]
                                                      cachePolicy:NSURLRequestReturnCacheDataElseLoad
                                                  timeoutInterval:60];
UIImage *image = [UIImage imageWithData:[[AFImageDownloader defaultURLCache] cachedResponseForRequest:imageRequest].data];