I want to set the height of the first header in my UITableView. For the other headers I want them to remain the default height. What value/constant can I put in place of \"s
To get the default height, just let super handle it:
super
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { if (section == 0) return kFirstHeaderHeight; return [super tableView:tableView heightForHeaderInSection:section]; }