I\'m using a UITableView to layout content \'pages\'. I\'m using the headers of the table view to layout certain images etc. and I\'d prefer it if they didn\'t
UITableView
Tested with Xcode 14.
For hiding any section header, Return nil for title of section delegate
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { return nil }