iOS:grouped类型的UITableView消除多余的间距

tableView.estimatedSectionHeaderHeight = 0
tableView.estimatedSectionFooterHeight = 0

func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
    return 0.01
 }
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
        return 0.01
}

你可能感兴趣的:(iOS:grouped类型的UITableView消除多余的间距)