我有一个UITableview我想在HeaderView
上添加UITableview
。
然而,没有调用viewForHeaderInSection,但我看到正在调用或显示titleForHeaderInSection。我也尝试使用自定义单元格标题,它也不起作用。
我不知道我做错了什么。
override func viewDidLoad() {
super.viewDidLoad()
self.title = "Groceries"
tableView.registerNib(UINib(nibName: "TransactionSpecifiedCategoriesTableViewCell", bundle: nil), forCellReuseIdentifier: "TransactionSpecifiedCategoriesTableViewCell")
tableView.registerNib(UINib(nibName: "TransactionSpecifiedCategoriesHeaderViewCell", bundle: nil), forHeaderFooterViewReuseIdentifier: "TransactionSpecifiedCategoriesHeaderViewCell")
tableView.tableFooterView = UIView(frame: CGRectMake(0, 0, 0, 0))
}
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let footerView = UIView(frame: CGRectMake(0, 0, tableView.frame.size.width, 100))
footerView.backgroundColor = UIColor.blackColor()
return footerView
//let header: UITableViewHeaderFooterView = view as UITableViewHeaderFooterView
//var headerView = UIView(frame: CGRectMake(0, 0, 100, 320))
//headerView.backgroundColor = UIColor.blackColor()
//
//return headerView
}
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 200.0
}
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "First section header title"
}
答案 0 :(得分:22)
swift 3
你应该致电
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let rect = CGRect(x: 0, y: 0, width: tableView.frame.size.width, height: 44)
let footerView = UIView(frame:rect)
footerView.backgroundColor = UIColor.clear
return footerView
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 44
}
答案 1 :(得分:19)
viewForHeaderInSection
方法属于UITableViewDelegate
协议。因此,您必须将表视图的delegate
设置为视图控制器才能获得此回调。您可能只是设置了tableview的dataSource
,因为您调用了其他方法。
答案 2 :(得分:5)
您还可以将tableView.estimatedSectionHeaderHeight = 40添加到viewDid中以获取名为
的viewForHeaderInSection答案 3 :(得分:0)
我遇到了这个问题,而在UITableViewController中没有调用viewForHeaderInSection,UITableViewController默认是委托。原来那个
override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat
阻止调用viewForHeaderInSection。因此,如果委托事物不起作用,您可能需要检查您是否没有覆盖其他部分标题方法之一。