Solution
ヘッダーの高さはheightForHeaderInSection
で指定すればいいのですが、ここで0
を指定するとデフォルトの高さになってしまうので、代わりにCGFloat.leastNormalMagnitude
を使います。
extension HogeViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
CGFloat.leastNormalMagnitude
}
}