SDWebimage加载不出图片

2024-09-18  本文已影响0人  失忆的程序员

1、检查图片URL中是否包含中文字,如果有,需要解码一次才能加载图片

NSString *url = [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

2、加载网络图片失败,重新运行才有图片

使用

- (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options;

这个方法options传SDWebImageRetryFailed就ok了

最后实现

[<#你的imageView#> sd_setImageWithURL:[NSURL URLWithString:[<#你的图片字符串#> stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLQueryAllowedCharacterSet]]] placeholderImage:<#你的占位图片#>  options:(SDWebImageRetryFailed)];
上一篇下一篇

猜你喜欢

热点阅读