Reputation: 175
How can I get rid of the first sectionBar here, right above the 'Home' ?
Upvotes: 0
Views: 75
Reputation: 4914
Try this :
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if (section == 0) {
return nil;
}
}
or this :
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
if (section == 0) {
return 0;
}
Upvotes: 4