I am developing an app that should show the image in UIImageview
by passing image URL in SDWebImage. It works great and showing image in iOS6 and earlier device but in iOS7 it doesn't produce images. Here is my code
This is the ImageUrl i'm using
In here, ImageUrl has value
[self.ImgView setImageWithURL:[NSURL URLWithString:imageUrl] placeholderImage:[UIImage imageNamed:@"load.png"]];
When it calls to this below method url becomes nil. So that only it doesn't returns image.
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder
{
[self setImageWithURL:url placeholderImage:placeholder options:0];
}
Anyone suggest me where is the problem?