使用SDWebImage的
[avatorImageView setImageWithURL:[NSURL fileURLWithPath:self.dataSource[0]]];在使用这个时,只能更新一次头像;
解决方法还是改成下面这个方法才能不断更新头像:
avatorImageView.image= [UIImage imageWithContentsOfFile:self.dataSource[0]];
使用SDWebImage的
[avatorImageView setImageWithURL:[NSURL fileURLWithPath:self.dataSource[0]]];在使用这个时,只能更新一次头像;
解决方法还是改成下面这个方法才能不断更新头像:
avatorImageView.image= [UIImage imageWithContentsOfFile:self.dataSource[0]];
本文标题:UIImageView :fileURLWithPath和ima
本文链接:https://www.haomeiwen.com/subject/rvifsttx.html
网友评论