UITableView自定义部分页脚

时间:2016-11-14 14:20:48

标签: ios iphone swift uitableview

我们确实有一个TableViewModel正在实施UITableViewDelegateUITableViewDataSource。它包含部分并返回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) -> CGFloatoptional public func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat

  1. 问题:如何获得实例化的UIView的高度? view.frame.boundsview.frame.height始终为0.
  2. 问题:Apple用于页脚的默认值是什么?它是如何计算的?我认识到,如果我们返回table.sectionFooterHeight作为默认值(不是我们的自定义页脚视图),则高度正确。
  3. 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 {
            ??
        }
    }
    

2 个答案:

答案 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
}