无法在iOS中从解析中下载和查看图像

时间:2016-08-02 12:47:04

标签: objective-c parse-platform

截至昨天,我能够很好地查看图片,但现在我无法从网址查看并收到错误

  

NSErrorFailingURLKey = http://files.parsetfss.com

有些图片正常运行,而其他图片则出现问题。

[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);
    }

}];

1 个答案:

答案 0 :(得分:0)

两个可能的原因:

  1. 解析中的图像名称。当名称包含像#34;。","&"等名称时,我会遇到问题。尝试使用简单的名称和不同的图像格式。
  2. 检查您是否允许     访问plist文件中的解析检查here