我从Firebase数据库中获取一个要下载图像的URL,并在cell.articleImage.image =主线程中的UIImage(data:data)上收到此错误,它没有崩溃但不会返回这些图像,有人知道会出什么问题吗?
override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
DispatchQueue.global().async {
let v = UIView(frame: .zero)
}
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "articleCell") as? articlesCell else {
return UITableViewCell()}
let article = articleArray[indexPath.row]
let url = URL(string: article.imageURL)!
DispatchQueue.global().async {
do{
let data = try Data(contentsOf: url)
DispatchQueue.global().sync {
cell.articleImage.image = UIImage(data: data)
}
} catch {
}
}
// cell.articleImage.sd_setImage(with: url, placeholderImage: UIImage(named: "issaimage"))
cell.configureCell(title: article.ArticleTitle, author: article.author, date: article.date)
return cell
}
答案 0 :(得分:3)
您在全局队列而不是主队列中进行操作,因此请更改此
DispatchQueue.global().sync {
cell.articleImage.image = UIImage(data: data)
}
到
DispatchQueue.main.sync {
cell.articleImage.image = UIImage(data: data)
}
//
最好再使用SDWebImage,因为使用这种方法,每次滚动都会下载图像
//
也在您的viewDidLoad
DispatchQueue.global().async { // should be in main queue
let v = UIView(frame: .zero) // whatever UI is here
}