我有一个UITableView
并且在我的应用程序的初始加载期间它发送多个 API 请求。随着每个 API 请求返回,我在UITableView
. 因此,初始加载会在随机时间以随机顺序添加行(大多数情况下都在一秒钟内发生)。
在单元设置期间,我调用 Async 方法来生成MKMapKit
MKMapSnapshotter
图像。
我之前使用过异步图像加载没有问题,但很少我最终将图像放在错误的单元格中,我不知道为什么。
我已经尝试切换到,DiffableDataSource
但问题仍然存在。
在我的DiffableDataSource
我将一个闭包传递给当图像异步返回时调用的单元格,以获取当前单元格以防它被更改:
let dataSource = DiffableDataSource(tableView: tableView) {
(tableView, indexPath, journey) -> UITableViewCell? in
let cell = tableView.dequeueReusableCell(withIdentifier: "busCell", for: indexPath) as! JourneyTableViewCell
cell.setupCell(for: journey) { [weak self] () -> (cell: JourneyTableViewCell?, journey: Journey?) in
if let self = self
{
let cell = tableView.cellForRow(at: indexPath) as? JourneyTableViewCell
let journey = self.sortedJourneys()[safe: indexPath.section]
return (cell, journey)
}
return(nil, nil)
}
return cell
}
这是我的单元设置代码:
override func prepareForReuse() {
super.prepareForReuse()
setMapImage(nil)
journey = nil
asyncCellBlock = nil
}
func setupCell(for journey:Journey, asyncUpdateOriginalCell:@escaping JourneyOriginalCellBlock) {
self.journey = journey
// Store the async block for later
asyncCellBlock = asyncUpdateOriginalCell
// Map
if let location = journey.location,
(CLLocationCoordinate2DIsValid(location.coordinate2D))
{
// Use the temp cached image for now while we get a new image
if let cachedImage = journey.cachedMap.image
{
setMapImage(cachedImage)
}
// Request an updated map image
journey.createMapImage {
[weak self] (image) in
DispatchQueue.main.async {
if let asyncCellBlock = self?.asyncCellBlock
{
let asyncResult = asyncCellBlock()
if let cell = asyncResult.cell,
let journey = asyncResult.journey
{
if (cell == self && journey.id == self?.journey?.id)
{
self?.setMapImage(image)
// Force the cell to redraw itself.
self?.setNeedsLayout()
}
}
}
}
}
}
else
{
setMapImage(nil)
}
}
我不确定这是否只是UITableView
在短时间内更新多次的竞争条件。