我们确实有一个TableViewModel
正在实施UITableViewDelegate
和UITableViewDataSource
。它包含部分并返回UITableViews
的正确行和元素。
现在我们想要一个自定义表格视图部分页脚。因此,我们实现optional public func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView?
,以便从xib文件返回UIView
。这一切都很好,但最终会以错误的页脚高度结束。如果我们使用func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String?
页脚显示正确并且页脚的高度设置正确。
因此,我们还必须实施optional public func tableView(_ tableView: UITableView, estimatedHeightForFooterInSection section: Int) -> CGFloat
或optional public func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat
view.frame.bounds
或view.frame.height
始终为0. table.sectionFooterHeight
作为默认值(不是我们的自定义页脚视图),则高度正确。 TableViewModel:
class TableViewModel: NSObject, UITableViewDelegate, UITableViewDataSource {
var sections: [TableViewSection] = []
func numberOfSections(in tableView: UITableView) -> Int {
return sections.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return sections[section].numberOfRowsInTableView(tableView)
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
return sections[(indexPath as NSIndexPath).section].tableView(tableView, cellForRowAtIndexPath: indexPath)
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
sections[(indexPath as NSIndexPath).section].tableView(tableView, didSelectRowAtIndexPath: indexPath)
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return sections[section].headerText
}
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
sections[section].tableView(tableView, willDisplayHeaderView: view)
}
func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
return sections[section].footerText
}
func tableView(_ tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) {
sections[section].tableView(tableView, willDisplayFooterView: view)
}
func tableView(_ tableView: UITableView, shouldShowMenuForRowAt indexPath: IndexPath) -> Bool {
return sections[(indexPath as NSIndexPath).section].tableView(tableView, cellContentsToCopyAtIndexPath: indexPath, withSender: nil) != nil
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
??
}
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
return sections[section].footerView
}
func tableView(_ tableView: UITableView, estimatedHeightForFooterInSection section: Int) -> CGFloat {
??
}
}
答案 0 :(得分:1)
我通过添加以下方法解决了这个问题:
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return sections[section].footerViewHeight ?? UITableViewAutomaticDimension
}
并返回部分中页脚的计算高度。它确实正确调整大小,我们可以调整它。如上所述,返回UITableViewAutomaticDimension需要:
// Returning this value from tableView:heightForHeaderInSection: or tableView:heightForFooterInSection: results in a height that fits the value returned from // tableView:titleForHeaderInSection: or tableView:titleForFooterInSection: if the title is not nil.
答案 1 :(得分:-1)
如果您使用自动布局,您仍然可以在UITableViewAutomaticDimension
中返回heightForFooterInSection
,并自动计算页脚的高度。与heightForRowAt
一样,heightForFooterInSection
必须与estimatedHeightForFooterInSection
结合使用。一个简单的例子如下所示:
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return UITableViewAutomaticDimension
}
func tableView(_ tableView: UITableView, estimatedHeightForFooterInSection section: Int) -> CGFloat {
return 18 // or whatever value
}