Ho un UITableview Sto cercando di aggiungere uno HeaderView
sul mio UITableview
.iOS Swift viewForHeaderInSection Non viene chiamato
Tuttavia viewForHeaderInSection non viene chiamato, ma vedo titleForHeaderInSection chiamato o visualizzato. Ho anche provato a usare un'intestazione di cella personalizzata per questo e anche questo non funziona.
Non ho idea di cosa sto facendo male.
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"
}
Sì. Hai ragione. tableView.delegate = auto funziona. Grazie. dimenticato. – user3110353
Felice di averlo aiutato. Non dimenticare di accettare questa risposta. Grazie – croX
Se si utilizza la tabellaView dallo storyboard, è possibile impostare il metodo delegate dallo storyboard stesso. – iDevAmit