我正在使用NSURLCache存储在集合视图单元格中使用的图像。当呈现一个单元格时,我希望能够获取特定单元格的缓存图像(该图像具有与之关联的图像的URL)。我可以使用-[NSURLCache cachedResponseForRequest:]
执行此操作,但问题是如果服务器返回HTTP 301 Moved Permanently响应,则该方法返回描述重定向的缓存响应,而不是包含实际图像的第二个后续响应数据。有没有简单的方法可以从NSURLCache
获取重定向的HTTP请求的缓存数据?
答案 0 :(得分:3)
我无法找到解决此问题的内置方法,因此我在NSURLCache
上创建了一个类别,该类别以递归方式跟随HTTP重定向:
- (NSCachedURLResponse *)nf_cachedResponseForRequestByFollowingRedirects:(NSURLRequest *)request
{
NSCachedURLResponse *cachedResponse = [self cachedResponseForRequest:request];
NSHTTPURLResponse *HTTPURLResponse = (NSHTTPURLResponse *)cachedResponse.response;
if ([@[@301, @302, @303, @307, @308] containsObject:@(HTTPURLResponse.statusCode)])
{
NSString *redirectedURL = HTTPURLResponse.allHeaderFields[@"Location"];
if (redirectedURL.length > 0)
{
NSMutableURLRequest *redirectedRequest = request.mutableCopy;
redirectedRequest.URL = [NSURL URLWithString:redirectedURL];
return [self nf_cachedResponseForRequestByFollowingRedirects:redirectedRequest];
}
else
{
NSLog(@"Warning: got a redirected URL response, but without a 'Location' field to redirect to. Headers: %@", HTTPURLResponse.allHeaderFields);
return cachedResponse;
}
}
return cachedResponse;
}
注意:在重定向循环的情况下,此解决方案可能会导致无限递归(和堆栈溢出)。