How can we hide the tableHeaderView and tableFooterView?

前端 未结 8 542
我在风中等你
我在风中等你 2020-12-08 10:32

I have two buttons which i add it in one in table-footer and other one in table-header,i know how to hide the headerview of the table using this codetable.tableHeader

8条回答
  •  孤街浪徒
    2020-12-08 10:55

    Instead of hiding the header view you should do,

    tableView.tableHeaderView = nil
    

    And later if you want to show it then just assign it again,

    tableView.tableHeaderView = tableHeaderView;
    

    In Swift:

    class myTableViewController: UITableViewController {
    
        @IBOutlet var tableHeaderView: UIView!
    
        private func toggleHeaderView() {
            if tableView.tableHeaderView == nil {
                tableView.tableHeaderView = tableHeaderView 
            } else { 
                tableView.tableHeaderView = nil 
            }
        }
    
    }
    

    on your Storyboard, simply drag a UIView in to the table view. It will "magically" become the table view header (if you do another one, it will become the table view footer). HOWEVER you must click on that header view, and drag the referencing outlet to the table view controller, and link it to "tableHeaderView" ... that part is not "magic".

    Note that because of the "!" in the declaration, you have to remember to drag the link on Storyboard or you'll get a runtime error during testing, so that's a good thing.

提交回复
热议问题