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)];
网友评论