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
For Swift 3+
Simply use UITableViewStyleGrouped and set the footer's height to zero with the following:
UITableViewStyleGrouped
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { return .leastNormalMagnitude }