想知道图像是否在使用SDWebImage的网址上不可用

时间:2015-12-08 05:59:25

标签: ios sdwebimage

在我的应用程序中,我正在使用SDWebImage Library从webservice下载url中的图像。我对此代码没有任何问题

[imgQuestionContainer sd_setImageWithURL:[NSURL URLWithString:@"url"] placeholderImage:@"abc.png" options:SDWebImageProgressiveDownload];

使用上面的代码我已经成功加载了imageview中的图像...

但我的问题是,如果我有图片的网址,但图片在网址的特定路径上不可用。那么,如何知道该图像不可用,以便我可以加载下一个数据。

感谢。

2 个答案:

答案 0 :(得分:0)

[cell.imageView setImageWithURL:[NSURL URLWithString:@"http://www.domain.com/path/to/image.jpg"]
               placeholderImage:[UIImage imageNamed:@"placeholder.png"]
                        success:^(UIImage *image) {
                                       if(image){

                                       }else{

                                            }
}
                        failure:^(NSError *error) {
                                      }];
];

答案 1 :(得分:0)

这正是我想要的。

[imgQuestionContainer sd_setImageWithURL:[NSURL URLWithString:[[arrOfLoadedPuzzel objectAtIndex:0] objectForKey:@"puzzle_question"]]
                  placeholderImage:nil
                         completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL)
                        {
                            if(error)
                            {
                                 // image is not available
                            }
                            else
                            {
                                 // image is available
                            }
                       }];