Desidero ottenere il titolo dell'intestazione nella sezione di UITableView, per favore guidami qual è la sintassi in swift per ottenere il titolo dell'intestazione nella sezione.UITableView get titleForHeadersInSection swift
func tableView(tableView : UITableView, titleForHeaderInSection section: Int)->String
{
switch(section)
{
case 2:return "Title 2"
break
default :return ""
break
}
}
func tableView (tableView:UITableView , heightForHeaderInSection section:Int)->Float
{
var title = tableView.titleForHeaderInSection[section];
if (title == "") {
return 0.0;
}
return 20.0;
}
func tableView (tableView:UITableView, viewForHeaderInSection section:Int)->UIView
{
var title = tableView.titleForHeaderInSection[section] as String
if (title == "") {
return UIView(frame:CGRectZero);
}
var headerView:UIView! = UIView (frame:CGRectMake(0, 0, self.tableView.frame.size.width, 20.0));
headerView.backgroundColor = self.view.backgroundColor;
return headerView;
}
Perché non usi il numero di sezione per il confronto invece del titolo? – zisoft
in realtà voglio conoscere la sintassi per ottenere il titolo Per intestazione nella sezione. –