gpt4 book ai didi

ios - 未调用 UTTableView 的 willDisplayCell

转载 作者:行者123 更新时间:2023-11-28 10:17:24 27 4
gpt4 key购买 nike

我想更改 TableView 中单元格的状态。我尝试在“cellForRowAtIndexPath”方法中设置状态,但它没有用。然后我看到帖子说为了改变单元格的状态需要使用委托(delegate)方法“willDisplayCell”。但是,当我实现该方法时,它没有被调用(我放置了一个没有被调用的断点)

func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {

cell.selected = true
}

我也尝试使用 Apple 文档中出现的“willDisplay”,但这没有帮助。事实上,我尝试了任何垃圾而不是那个字符串,但没有任何反应 - 应用程序编译没有错误,但没有调用该方法。

我知道 tableView 的委托(delegate)正在工作,因为正在调用其他委托(delegate)方法,例如“didSelectRowAtIndexPath”。

最佳答案

willDisplayCell 的 Swift 3.0 语法现在是:

override func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {

}

关于ios - 未调用 UTTableView 的 willDisplayCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39834892/

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