gpt4 book ai didi

ios - UITableView 自定义部分页脚

转载 作者:可可西里 更新时间:2023-11-01 02:12:32 24 4
gpt4 key购买 nike

我们确实有一个 TableViewModel,它正在实现 UITableViewDelegateUITableViewDataSource。它包含部分并返回我们的 UITableViews 的正确行和元素。

现在我们想要一个自定义表格 View 部分页脚。因此,我们实现了 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) -> CGFloatoptional public func tableView(_ tableView: UITableView, heightForFooterInSection 部分:Int) -> CGFloat

  1. 问题:如何获取实例化的 UIView 的高度? view.frame.boundsview.frame.height 始终为 0。
  2. 问题:Apple 为页脚使用的默认值是多少?它是如何计算的?我认识到,如果我们为默认值(不是我们的自定义页脚 View )返回 table.sectionFooterHeight,则高度是正确的。

表格 View 模型:

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 {
??
}
}

最佳答案

我通过添加以下方法解决了这个问题:

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.

关于ios - UITableView 自定义部分页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40590926/

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