Open Steven-Yung opened 7 years ago
用法问题 我这是好的 你调试看看
试试 UIViewContentModeScaleToFill
[cell.avatarButton yy_setImageWithURL:[NSURL URLWithString:photo.avatarSmallURL]
forState:UIControlStateNormal
placeholder:nil
options:YYWebImageOptionProgressiveBlur | YYWebImageOptionShowNetworkActivity | YYWebImageOptionSetImageWithFadeAnimation
manager:nil
progress:^(NSInteger receivedSize, NSInteger expectedSize) {
}
transform:^UIImage * _Nullable(UIImage * _Nonnull image, NSURL * _Nonnull url) {
@StrongObj(cell);
image = [image yy_imageByResizeToSize:cellStrong.avatarButton.frame.size contentMode:UIViewContentModeScaleToFill];
return [image yy_imageByRoundCornerRadius:cellStrong.avatarButton.frame.size.width/2];
}
completion:^(UIImage * _Nullable image, NSURL * _Nonnull url, YYWebImageFromType from, YYWebImageStage stage, NSError * _Nullable error) {
}];
是缓存问题吧,试试清空缓存
YYWebImageOptionIgnoreDiskCache 把这个用上就不会
用户头像需要调整大小和设置圆角,我用了这个方法
结果图片还是原来的大小,并且圆角也没有生效,是不是哪里不对?