我已经读过类似的问题,但仍然无法解决。
我有一个UITableView,当滚动(快速)时,它会在cellForRowAt函数中崩溃。崩溃不会在表中的特定位置发生,而是随机发生。
这是错误:


  线程1:致命错误:索引超出范围


这是我的cellForRowAt

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cellIdentifier = "menuCell"
    let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? MenuTableCell
    return self.setMenuCell(cell: cell, indexPath: indexPath)
}


setMenuCell是:

private func setMenuCell(cell: MenuTableCell?, indexPath: IndexPath) -> MenuTableCell {
    print(indexPath.row, self.menuManager.menusCount)
    cell?.cliccaPerInfoLabel.text = LocalizedStrings.otherDishes
    cell?.altriPiattiLabel.isHidden = !((self.menuManager.getMenu(index: indexPath.row).getDishes().count) > 3)
    cell?.piatto3Label.isHidden = !((self.menuManager.getMenu(index: indexPath.row).getDishes().count) >= 3)
    cell?.numeroMenuLabel.text = "Menu \(indexPath.row+1)"
    cell?.numeroPiattiLabel.text = String(format: LocalizedStrings.numberOfDishes, (self.menuManager.getMenu(index: indexPath.row).getDishes().count))
    cell?.piatto1Label.text = String(format: LocalizedStrings.dishNumber, 1, (self.menuManager.getMenu(index: indexPath.row).getDishes()[0].getDescription()))
    cell?.piatto2Label.text = String(format: LocalizedStrings.dishNumber, 2, (self.menuManager.getMenu(index: indexPath.row).getDishes()[1].getDescription()))
    return cell!
    }


self.menuManager是跟踪菜单的对象。
无法理解出了什么问题。
在此先感谢您的帮助!

更新资料

这是我的numberOfRowsInSection函数:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.menuManager.menusCount
}

最佳答案

这是一个经典的读者-作家问题。我认为您应该使被menuManager.menusCountmenuManager.getMenu等访问的对象是线程安全的。

08-05 21:59