如何从swift中的UITableView中删除标题视图和页脚视图?

时间:2015-10-07 11:18:49

标签: swift uitableview

我再次问这个问题,因为尽管我读到了答案,但这对我不起作用。

我试试这个,但我仍然在页面中有页眉和页脚视图:

    override func viewDidLoad() {
    super.viewDidLoad()
    tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
    tableView.allowsMultipleSelection = true
    tableView.tableHeaderView=nil
    tableView.tableFooterView=nil
    tableView.reloadData()
}

func headerViewForSection(section: Int) -> UITableViewHeaderFooterView? {

    return nil

}

func footerViewForSection(section: Int) -> UITableViewHeaderFooterView? {
    return nil

}

1 个答案:

答案 0 :(得分:3)

我们可以将页眉和页脚高度设置为最小值。

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

因此,用户无法看到此页脚和标题。