在Grouped uitableview中删除单元格之前的空格

时间:2015-02-19 13:09:59

标签: ios uitableview grouped-table

我正在使用UITableView,我选择了tableview样式作为" Grouped"。

但我在这里遇到的问题是它在表视图的顶部和tableview的末尾显示了一些空白空间。为此,我使用了以下代码:

[_tableView setContentOffset:CGPointMake(0, 30)];

但是当我向下滚动时,它显示出空白区域。

有人可以告诉我如何删除这个空格。

1 个答案:

答案 0 :(得分:0)

尝试覆盖表格部分标题的高度

- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section { 
    return 1.0f; 
}

和tableview页脚视图

CGRect frame = self.tableView.tableFooterView.frame;
frame.size.height = 1;
UIView *view = [[UIView alloc] initWithFrame:frame];
[self.tableView setTableFooterView:view];