headerViewForSection和footerViewForSection总是返回nil

时间:2015-11-11 16:44:22

标签: ios swift uitableview uiview

因此在第一节的标题中创建一个自定义视图并返回它以显示(该函数返回一个UIView)

视图显示并且在应用程序中表现正常,但每当我调用headerViewForSection时,我都会返回nil

1 个答案:

答案 0 :(得分:3)

这让我感到有点担心但是我想发帖来帮助其他人,函数headerViewForSection()footerViewForSection()实际上返回了UITableViewHeaderFooterView类型的值? 虽然在

中填充UIView可以正常工作
func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView?

如果您想要检索它,操作系统将不会返回任何接受来自UITableViewHeaderFooterView的类型或子类的内容。希望这有助于一些人