我在UIViewController
课程中有这个自定义视图:
let footerView: CustomView = {
let footerView = CustomView()
footerView.translatesAutoresizingMaskIntoConstraints = false
footerView.backgroundColor = UIColor.blackColor()
return footerView
}()
然后我有:
func tableView(tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
footerView.title = getString(TITLE)
return footerView
}
func tableView(tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
return 44
}
但没有显示任何内容。但是,如果我使footer
查看viewController的view
的子视图而不是我所拥有的表的页脚视图,则会显示它。
我能错过什么?我不明白......谢谢你