我使用此代码在UICollectionView中显示一些图像但是让我们说单元格是25.当我下到最后一个单元格然后我尝试上升到第一个图像再次加载(从缓存但它仍显示加载指示器。 我的手机是iPhone SE,我没有很多应用程序,手机运行完美。如果我将我的应用程序加载到其上有许多数据的旧iphone,那么滚动它会变得很粘,而且非常烦人。我们如何避免在索引路径???
的项目的集合视图功能单元格内发生这种情况let cell = collectionView.dequeueReusableCellWithReuseIdentifier("RecipesCell", forIndexPath: indexPath) as! RecipesCell
// Get Cover image
let myCache = ImageCache(name: recipesClass.objectId!)
let queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)
let optionInfo: KingfisherOptionsInfo = [
.DownloadPriority(0.5),
.CallbackDispatchQueue(queue),
.Transition(ImageTransition.Fade(1)),
.TargetCache(myCache)
]
if let imageFile = recipesClass[RECIPES_COVER] as? PFFile {
let URL = NSURL(string: imageFile.url!)!
cell.coverImage.kf_setImageWithURL(URL, placeholderImage: nil,
optionsInfo: optionInfo,
progressBlock: { receivedSize, totalSize in
print("\(indexPath.row + 1): \(receivedSize)/\(totalSize)")
},
completionHandler: { image, error, cacheType, imageURL in
print("\(indexPath.row + 1): Finished")
print("cacheType: \(cacheType) \(indexPath.row + 1): Finished")
})
} else {
cell.coverImage.image = UIImage(named:"logo")
}
有没有人有同样的问题? 谢谢!
仅供参考我使用解析和翠鸟进行缓存
答案 0 :(得分:0)
经过几天关于UI Kit的研究并使用Instruments分析我的应用程序> Time Profiler我发现主线程上正在执行image decoding
。这是不好的做法。所以Kingfisher
有一个选项可以解码背景上的图像,我的应用程序在旧的iphone上运行得更快但仍然有点粘。所以我取消了单元格上的圆角并启用了分页,因此它会减慢滚动速度,现在很棒。
对于背景图像解码,我使用了这个
let optionInfo: KingfisherOptionsInfo = [
.DownloadPriority(0.5),
.CallbackDispatchQueue(queue),
.Transition(ImageTransition.Fade(1)),
.TargetCache(myCache),
.BackgroundDecode //this is the new option I added
]