0

我有一个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在短时间内更新多次的竞争条件。

4

2 回答 2

0

我认为这是因为当图像可用时,该索引不存在。由于表格视图单元格是可重用的,它会加载前一个图像,因为当前图像尚未加载。

if let cachedImage = journey.cachedMap.image
    {
        setMapImage(cachedImage)
    }
else {
        // make imageView.image = nil
}
于 2021-01-27T10:39:05.067 回答
0

我可以看到您已经缓存了图像,但我认为您应该像这样准备单元以供重用:

override func prepareForReuse() {
    super.prepareForReuse()
    let image = UIImage()
    self.yourImageView.image = image
    self.yourImageView.backgroundColor = .black
}
于 2021-01-27T10:47:38.417 回答