Here's how I successfully use SDWebImageManager to load images:
- (void) downloadThumbnails:(NSURL *) finalUrl { SDWebImageManager *manager = [SDWebImageManager sharedManager]; [manager downloadWithURL:finalUrl options:0 progress:nil completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, BOOL finished) { if (image) { self.thumbnailURL = [finalUrl absoluteString]; } }]; } - (UIImage*)thumbnail { if (!self.thumbnailURL) return nil; return [[SDImageCache sharedImageCache] imageFromDiskCacheForKey:self.thumbnailURL]; }
How can I change to have a cross fading effect? The Cross Fade effect is one that makes displaying images slow, like the TechCrunch iOS app. Thanks!
UPDATE: If I can do anything else to have a cross-fade effect (other than SDWebImage) in a uitableview cell, than you can write it back.
UPDATE: I received several responses after my last update, and I can partially solve the problem. Using transitionWithView, as in the answer below, it works and cross fades as I want, BUT, since I use a table controller that loads more records, when it touches the bottom, it updates all cells once before a new record block is How can I prevent this behavior?
Aj112 source share