如何在titleForHeaderInSection
之外的uitableviewcontroller上重命名标题?
答案 0 :(得分:0)
您可以在不使用cellForRowAtIndexPath
reloadRowsAtIndexPaths()
条件reloadRowsAtIndexPaths()
所以它只会重新加载reloadData()
中给出的索引,不需要PackageManager
。
答案 1 :(得分:0)
因此,根据问题声明更新标题而不重新加载或委托仅使用标签引用来更新部分的标题。
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let view = UIView() //set the frame accordingly
let label = UILabel() //set the frame accordingly
//make it global and use it reference for updating the title of the section
view.addSubview(label)
return view
}
我没有使用Xcode
所以请验证只是粗略地编写代码
答案 2 :(得分:0)
// If only section 2 has a header
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
return section == 2 ? updateHeader(section) : nil
}
func updateHeader(section: Int) -> CustomHeader {
let header = (tableView.footerViewForSection(section) ?? tableView.dequeueReusableHeaderFooterViewWithIdentifier("customHeader")) as! CustomHeader
// Set up your header
return header
}
// Change text in header
let header = updateHeader(2).customLabel.text = "Your custom text"
只是一个小例子。请注意,当tableview重新加载时,它将更改回标头的默认设置。所以一定要在自己的代码中处理。