tableView分组时不能取消掉footerView

如果tableView为group(分组模式)的时候,系统会给每一组自动分配一个headerView和一个footerView,如果想设置footerView为0,在代理里边最好不要写0,因为有时候还会显示出来,最好写0.0001f

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 0.0001f;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    return nil;
}

你可能感兴趣的:(tableView分组时不能取消掉footerView)