gpt4 book ai didi

ios - 如何引用 cellForRowAtIndexPath 之外的单元格

转载 作者:搜寻专家 更新时间:2023-10-30 22:02:10 24 4
gpt4 key购买 nike

我正在尝试更新

之外的单元格中的标签
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell

通过使用

let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! Cell

在另一个函数中。但是,我不断收到错误。因此,我尝试使用 let cell = Cell() 来引用单元格,但出现错误 unexpectedly found nil。最后,我试过了

let cell = tableView.dequeueReusableCellWithIdentifier("cell") as! Cell

不会返回错误,但标签 cell.time.text 不会更新。

最佳答案

swift 3.0 swift 4

let indexPath = IndexPath(row: 0, section: 0)
let cell = tableView.cellForRow(at: indexPath)

swift 2.3

let indexPath = NSIndexPath(forRow: 0, inSection: 0)
let cell = tableView.cellForRowAtIndexPath(indexPath)

注意:- 在上述方法的帮助下,您只能获得 tableView 的可见单元格,除了单元格为 nil

关于ios - 如何引用 cellForRowAtIndexPath 之外的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44363940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com