I have an image view where I am displaying an image from an URL.I am using SDWebImage Framework,the image is getting displayed in the imageview after it has completed downloading. I want to make it appear that the image is getting downloaded over the placeholder image that i am using,just like a webview loads a NSURLRequest.Is there any way to do that?
This is where im loading the image:
[myImageView setImageWithURL:[NSURL URLWithString:[[tempUrls objectAtIndex:0] objectAtIndex:0]] placeholderImage:[UIImage imageNamed:@"thumbnail404.png"]];