I have a UITableView with header and footer height = 0, also the delegate returns 0 for footer height. Still there's a spacing between the sections 🤔 what can I check? #uikit #uitableview
found it here: https://gist.github.com/denizak/12f36f81db8d52c09b4053089013eacf
if #available(iOS 15.0, *) {
self.tableView.sectionHeaderTopPadding = 0;
}

