我有一个具有各种不同单元格的tableView,这些单元格有一个文本标签,每个单元格都有一个数字。1秒增加。而不是重新加载 tableView 或可见的单元格。1秒钟后,我想更改文本会更有效,但当我尝试这样做时,应用程序因问题标题中给出的错误而崩溃。这是我的代码:
tableView
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! OwnedBusinessCell cell.textLabel?.text = "" return cell }
调用my函数的计时器:
func scheduledTimerWithTimeInterval(){ reloadTimer = Timer.scheduledTimer(timeInterval: 0.1, target: self, selector: #selector(self.reloadTV), userInfo: nil, repeats: true) }
“尝试”更改文本的我的函数:
@objc func reloadTV() { for myIP in (tableView.indexPathsForVisibleRows)! { let cell = tableView(tableView, cellForRowAt: myIP) cell.textLabel?.text = increasingVariable } }
完全错误:
由于未捕获异常而终止应用程序 “NSInternalInconsistencyException”,原因:“试图退出队列 同一索引路径有多个单元格,这是不允许的。如果你 确实需要排出比表视图请求的单元格更多的单元格, 使用-dequeueReusableCellWithIdentifier:方法(不带索引 路径)。单元格标识符:单元格,索引路径:{长度=2,路径=0-0}'
谢谢你的帮助!
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
是表视图数据源方法,不打算直接调用, 这就是你所做的
let cell = tableView(tableView, cellForRowAt: myIP)
如果需要特定的单元格,请向表视图询问,而不是 数据来源:
for myIP in tableView.indexPathsForVisibleRows ?? [] { if let cell = tableView.cellForRow(at: myIP) { // ... } }
或更简单:
for cell in tableView.visibleCells { // ... }