在使用 UITableViewController 的時候,多餘的空 cell 會默認展現不少橫線。如何去除呢?給 footerHeight 反一個極小的值就能夠了swift
UITableViewController
footerHeight
override func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat { return 0.001 }