gpt4 book ai didi

ios - 什么时候设置更改 heightForRowAt UITableView 动画被打破

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

什么时候设置改变 heightForRowAt UITableView 动画是 broken cell 是一个跳跃。如果选择最后一行并滚动到顶部,然后点击折叠行,表格会向上跳。动画坏了。

enter image description here

override func viewDidLoad() {
super.viewDidLoad()
tableView.delegate = self
tableView.dataSource = self
tableView.estimatedRowHeight = 300
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return conditionData[indexPath.section].conditions?[indexPath.row].selected ?? false ? 300 : 76
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
conditionData[indexPath.section].conditions?[indexPath.row].selected = true
tableView.beginUpdates()
let cell = tableView.cellForRow(at: indexPath) as? ConditionsCell
cell?.setSelected(true, animated: true)
tableView.endUpdates()
}

func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
conditionData[indexPath.section].conditions?[indexPath.row].selected = false
tableView.beginUpdates()
let cell = tableView.cellForRow(at: indexPath) as? ConditionsCell
cell?.setSelected(false, animated: true)
tableView.endUpdates()
}

最佳答案

当我开始使用这种方法时,动画看起来非常好。

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
return conditionData[indexPath.section].conditions?[indexPath.row].selected ?? false ? 300 : 76
}

关于ios - 什么时候设置更改 heightForRowAt UITableView 动画被打破,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52200432/

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