我正在设置table的属性,tableHeaderView被隐藏,这可以工作并隐藏tableHeaderView但我也希望桌子向上移动并掩盖tableHeaderView占用的空间。
谢谢
答案 0 :(得分:3)
如果要隐藏tableHeaderView
,则需要在要隐藏标题的位置执行以下操作,
[yourTableView setTableHeaderView:nil];
这将自动删除标题视图占用的空间。
答案 1 :(得分:1)
要省略标题和空格,请使用:
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
return nil;
}
答案 2 :(得分:0)
为此,您唯一需要做的就是将标题的高度设置为0。
然后即使你不会隐藏标题它也会自动隐藏
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 0;
}
快乐的iCODING ......