我遇到了这样的问题。文本我的单元格在表格部分下爬行,成为谷歌但无法找到解决方案。在做这些事情之前,当我只是UITableViewController时没有其他元素如段。一切都很完美。告诉我如何解决这个问题。谢谢!
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cell = tableView.dequeueReusableHeaderFooterViewWithIdentifier("CommonSectionTableView") as! CommonSectionTableView
cell.titleLabel.text = self.ordersSectionName[section]
return cell
}
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 55.0
}
答案 0 :(得分:0)
试试这个代码......
//If you want to place a header
let header = "Your Header Name"
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return header
}
//If you using section header
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return "Section \(Your Section Name or Array)"
}
上面的代码会将headerView放在tableView的上方......
如果您想自定义headerView结帐以下问题
Customize UITableView header section
http://www.ioscreator.com/tutorials/customizing-header-footer-table-view-ios8-swift
FindCapnProto.cmake