如何删除UITableView
标题中的空格表格的内容?
我已尝试过以下内容,但在tableview标题之后仍有空格
tableView.contentOffset = CGPointZero
self.automaticallyAdjustsScrollViewInsets = false
tableView.contentInset = UIEdgeInsetsMake(-20, 0, -20, 0)
答案 0 :(得分:-2)
您可以使用此代码删除标题,并在第一个单元格之间缩小空间
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0.005f;// set this according to that you want...
}
你也可以设置页脚如下..
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
return 3.5f;// also set this one as you want ...
}