How would I go about finding out whether a UIImage has already been cached with NSURLConnection?
example:
if([NSURLCache containsObject:[UIImage imageNamed@"testPic.png"]]){
NSLog(@"item already cached!");
}
obviously the above code doesn't work but you get the point...
Thanks!