gpt4 book ai didi

Swift SDWebImage 从不执行完成

转载 作者:行者123 更新时间:2023-11-30 11:07:28 28 4
gpt4 key购买 nike

我一定是在做一些愚蠢的事情,但是 SDWebImage 永远不会执行以下的完成处理程序:

episodeImageView?.sd_setImage(with: url, completed: { [weak self] (image, error, cacheType, url) in
print("Looped!") // NEVER!
DispatchQueue.main.async {
guard let image = self?.episodeImageView?.image else { return }
self!.episodeView.animate(image, imageAnimationDuration: 10, initialDelay: 0, shouldLoop: true)
}
})

最佳答案

使用此代码

episodeImageView.sd_setImage(with: url) { (image, error, cacheType, url) in
//Your Code
}

关于Swift SDWebImage 从不执行完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52547771/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com