我已经阅读了类似的问题,但仍然无法解决。
我UITableView
的{{1}}功能在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
}
答案 0 :(得分:0)
这是一个经典的读者 - 作家问题。我认为你应该让menuManager.menusCount
,menuManager.getMenu
等访问的对象是线程安全的。