您好,有很多问题可以回答 UITableViewCell
的 UITableView
的动态高度。但是,当我为 sectionFooterHeight
做这件事时,我觉得很奇怪。
代码为:
tableView.sectionHeaderHeight = UITableViewAutomaticDimension
tableView.estimatedSectionHeaderHeight = 25
tableView.sectionFooterHeight = UITableViewAutomaticDimension
tableView.estimatedSectionFooterHeight = 50
并在
xib
中为页脚 View 设置了约束虽然它适用于
headerview
但不适用于页脚 最佳答案
我认为您需要实现 tableView:heightForFooterInSection:
并返回 UITableViewAutomaticDimension
关于ios - 为什么 UITableViewAutomaticDimension 不适用于 sectionFooterHeight?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35769583/