在 iOS8 中移除 tableHeaderView 下方的填充

Remove padding below tableHeaderView in iOS8

我在界面生成器中为 tableHeaderView 添加了一个标签。但是,我想减少 header 和第一个 table 视图之间的填充。 (例如 "Round 1" 和 "Match 1" 之间)。这可能吗?

使用这个方法

- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if (section==0)
    return 50.0f;
else
    return 0.0f;
}