GroupedなUITableViewで上端のmarginをとりたい

override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    if section == 0 {
        return .min
    } else {
        return super.tableView(tableView, heightForHeaderInSection: section)
    }
}
  • return 0だとうまくいかない。
  • 0より大きい値を返すことで変更できるため、CGFloat.minを指定することで上端のmarginを消し去れる。