Closed winterlovesong closed 9 years ago
i load image for URL.
[AsyncImageLoader sharedLoader].cache = nil;
That clears the cache, but also prevents any future images being cached. The correct way is:
[[AsyncImageLoader sharedLoader].cache removeAllObjects];
i load image for URL.