0

我怎样才能摆脱'Home'上方的第一个sectionBar?

第一节

4

1 回答 1

4

尝试这个 :

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
if (section == 0) {
    return nil;
}
}

或这个 :

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
if (section == 0) {
    return 0;
}
于 2013-06-15T03:38:02.247 回答