Ensure URL caching is disabled in order to prevent from duplicate caching

This commit is contained in:
Olivier Poitrey 2010-03-17 12:42:29 +01:00
parent a230f6aba8
commit 439c01527f
1 changed files with 4 additions and 2 deletions

View File

@ -51,7 +51,9 @@ static NSOperationQueue *downloadQueue;
{
NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]];
// In order to prevent from potential duplicate caching (NSURLCache + SDImageCache) we disable the cache for image requests
NSURLRequest *request = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringLocalCacheData timeoutInterval:5];
UIImage *image = [UIImage imageWithData:[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:NULL]];
if (!self.isCancelled && [delegate respondsToSelector:@selector(imageDownloader:didFinishWithImage:)])
{