IamGretar
IamGretar

Reputation: 175

How to disable first section in tableview?

How can I get rid of the first sectionBar here, right above the 'Home' ?

First section

Upvotes: 0

Views: 75

Answers (1)

SpaceDust__
SpaceDust__

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

Related Questions