使用Swift的UITableView部分页脚文本

时间:2016-07-20 16:48:50

标签: ios swift uitableview

我有一个表视图,其中包含许多已动态创建的行数不同的部分。

我想在我的UITableView的某些部分添加页脚文本。我知道在实现静态UITableViews时很容易做到这一点(见图),但我在编程方面在Swift中添加页脚文本时遇到了困难。

Footer text added to a static UITableViewSection

我知道如何为每个部分添加标题。

3 个答案:

答案 0 :(得分:0)

请参阅“修改节的页眉和页脚”

下的UITableViewDelegate文档
tableView:viewForFooterInSection:

向代理询问视图对象的视图对象是否显示在指定部分的页脚中。

答案 1 :(得分:0)

您需要实现UITableViewDelegate协议方法:

tableView(tableView: UITableView, viewForFooterInSection section: Int)

*不要忘记先设置代表。

答案 2 :(得分:0)

func tableView(_ tableView:UITableView,titleForFooterInSection部分:Int)->字符串吗?