SDWebImageManager *manager = [SDWebImageManager sharedManager];
[manager downloadWithURL:imageURL
delegate:self
options:0
success:^(UIImage *image, BOOL cached) {
_newsimage.alpha = 0.0;
[UIView transitionWithView:_newsimage
duration:3.0
options:UIViewAnimationOptionTransitionCrossDissolve
animations:^{
[_newsimage setImage:image];
_newsimage.alpha = 1.0;
} completion:NULL];
}failure:nil];
I am using this code to download images through SDWebImage
library and I am geting this error
No visible @interface for 'SDWebImageManager' declares the selector 'downloadWithURL:delegate:options:success:failure:'