When I am trying to load image using SDWebImage,it's showing error like
< No visible @interface for 'UIImage' declares the selector 'sd_setImageWithURL:placeholderImage:'>
I am trying to load the image in a imageview in tableview cell like this:
[newsImage.image sd_setImageWithURL:[NSURL URLWithString:[jsonResult[indexPath.row] objectForKey:@"image"]]
placeholderImage:[UIImage imageNamed:@"tab.png"]];
Change
To