This is the first time I ask a question here, but I have to say this site has been a tremendous help for me over the last couple months (iphone-dev-wise), and I thank you fo
- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { if (section != OTHER_SECTION_INDEX) { return nil; } //your code here } - (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { if (section != OTHER_SECTION_INDEX) { return 0; } //your code }