gpt4 book ai didi

ios - DispatchQueue.main.async 阻塞主线程

转载 作者:行者123 更新时间:2023-11-28 05:50:36 25 4
gpt4 key购买 nike

我一直在尝试在 Swift 3.0 中创建一个照片库,我想将存储在文档目录中的图像异步加载到 Collection View 中。我尝试了 DispatchQueue.main.async 但它阻塞了主线程并卡住了应用程序几秒钟:

func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let identifier = "ImageCell"
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: identifier, for: indexPath) as! ImageCell
let url = self.imageURL[indexPath.row]
cell.lazyLoadImage(from: url)
return cell
}

和 ImageCell 类:

class ImageCell: UICollectionViewCell {
@IBOutlet weak var imageView: UIImageView!

func lazyLoadImage(from url: URL) {
DispatchQueue.main.async {
if let image = UIImage(contentsOfFile: url.path) {
self.imageView.image = image
}
}
}
}

感谢您的帮助。谢谢。

最佳答案

先切换到后台线程加载图片,再切换到主线程显示图片。

func lazyLoadImage(from url: URL) {
DispatchQueue.global(qos: .userInteractive).async {
if let image = UIImage(contentsOfFile: url.path) {
DispatchQueue.main.async {
self.imageView.image = image
}
}
}
}

关于ios - DispatchQueue.main.async 阻塞主线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53128415/

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