gpt4 book ai didi

ios - 调整tableHeaderView或tableFooterView的大小后,UITableView contentSize未更新

转载 作者:行者123 更新时间:2023-12-01 17:29:35 24 4
gpt4 key购买 nike

使用以下代码:

let tableView = ...
let oldSize = tableView.contentSize // header + all rows + footer

tableView.tableHeaderView.bounds.height -= 10

tableView.tableFooterView.bounds.height -= 10

您会看到:
assert(tableView.contentSize != oldSize) // ERROR: assertion fails

最佳答案

技巧是重新设置tableHeaderViewtableFooterView:

let tableView = ...
let oldSize = tableView.contentSize // header + all rows + footer

tableView.tableHeaderView.bounds.height -= 10
tableView.tableHeaderView = tableView.tableHeaderView

tableView.tableFooterView.bounds.height -= 10
tableView.tableFooterView = tableView.tableFooterView

assert(tableView.contentSize != oldSize) // no error :)

关于ios - 调整tableHeaderView或tableFooterView的大小后,UITableView contentSize未更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34446841/

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