I need help getting rid of the space between my TableView's main header and a section header.
let tableView: UITableView = {
let tableView = UITableView(frame: .zero, style: .plain)
return tableView
}()
tableView.tableHeaderView = postView
The post view is dynamic so I cannot set the height for that headerView in the delegate method.
I want the postView and the section below it together, but there is the weird space.