我正在开发一个应用程序,使用 Kingfisher 库从 ulr 加载图像并显示在CollectionViewCell
. 我正在尝试调整图像大小以适应Contentview
.CollectionViewCell
我已经从图书馆尝试过ResizeProcessor
,但结果图像似乎。我的实现如下(函数调用)ScaleFactor
blur
CellForRowAtIndexPath
let url = photo.flickrImageURL("m")
let size = contentView.frame.size
print("size is \(size.debugDescription)")
let resizeProcessor = ResizingImageProcessor(referenceSize: size, mode: .aspectFit)
self.flickrPhoto.kf.setImage(with: url, options: [.backgroundDecode,.processor(resizeProcessor), .scaleFactor(UIScreen.main.scale),.cacheOriginalImage])
有什么我做错了吗?质量images
看起来很模糊。