SDWebImage setImageWithURL iOS8崩溃

前端之家收集整理的这篇文章主要介绍了SDWebImage setImageWithURL iOS8崩溃前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已成功使用SDWeb Image很长时间了.但是当我们设置图像时,iOS8会崩溃,即
[ myImageView setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",@"url"]] placeholderImage:[UIImage imageNamed:PROFILE_HOLDER_IMAGE]];

有没有办法避免它

干杯

解决方法

他们已将setImageWithURL更改为iOS 8的sd_setImageWithURL.

试试这个新语法,

[myImageView sd_setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",@"url"]] placeholderImage:[UIImage imageNamed:PROFILE_HOLDER_IMAGE]];
原文链接:https://www.f2er.com/iOS/330720.html

猜你在找的iOS相关文章