Voglio impostare l'altezza della prima intestazione nel mio UITableView. Per le altre intestazioni voglio che rimangano l'altezza predefinita. Quale valore / costante posso inserire al posto di "someDefaultHeight" nel codice qui sotto?
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section == 0)
return kFirstHeaderHeight;
return someDefaultHeight;
}
Grazie