UITableView在Grouped风格下底部留白

UITableView在Plain风格下,分区头会悬停!在Grouped风格下分区头正常滑动,但是底部会留白

-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{//Grouped风格下底部留白
    return 0.0001;
}

 

2018年11月16日14:57:01更新----------iOS12.1   Xcode10.1

现在用上面的方法不好使了,很气!

-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    return nil;
}
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{//Grouped风格下底部留白
    return 0.0001;
}

这样就又可以了。

 

 

 

你可能感兴趣的:(iOS开发,-,-,UITableView,·,·,·)