UITabelview 的footerView和section的footer

这里的footer容易混淆

1.tableFooterView是整个tableview的尾视图,官方文档明确给出解释 :accessory view below content. default is nil. not to be confused with section footer,这里默认是没有的,而且提示我们不要和section 的footer 混淆.

2.section的footer是相对于单个分区来设置的.如需设置

两个相关的代理方法记得实现

(1).viewForFooterInSection:view

(2).heightForFooterInSection:高度 如果在foot上面有交互不响应,注意下此方法是否实现,一般不需要时 ,我们设置很小的高度 0.00001f.不影响UI.

对于header同理

你可能感兴趣的:(UITabelview 的footerView和section的footer)