As of yesterday I was able to view images fine but now I can't view from url and get error as
NSErrorFailingURLKey=
http://files.parsetfss.com
Some images are working fine while others are getting issues.
[cell.imageView sd_setImageWithURL:[NSURL URLWithString:objStampData.stampImage.url] placeholderImage:[UIImage imageNamed:@"PlaceHolder.png"] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL)
{
if(!error)
{
[activityIndicator stopAnimating];
[activityIndicator removeFromSuperview];
}
else
{
NSLog(@"Error %@",error);
}
}];