Empty white space above UITableView inside a UIView

前端 未结 8 1101
梦毁少年i
梦毁少年i 2020-12-13 13:53

I\'m trying to position a TableView inside my ViewController view but leaving a 44 height gap between the bottom of the navigation bar and the top of the table. I then wante

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-13 14:27

    My issues is, I set tableHeaderView as new UIView like this

    self.tableHeaderView = UIView(frame: .zero)
    

    Remove this line, the issue is gone. Try this:

    //self.tableHeaderView = UIView(frame: .zero)
    

提交回复
热议问题