iOS 7 UITableView: How to remove space between navigation bar and first cell

前端 未结 15 2394
Happy的楠姐
Happy的楠姐 2020-12-04 07:15

Description of the problem: with iOS 7 in grouped UITableView there is a gap between the top of the table view and the first cell.

The strange part is th

15条回答
  •  情书的邮戳
    2020-12-04 07:40

    I am working with Xcode 7.3.1, iOS9, and swift 2. I would like to share what worked for me:

    Just add this in you ViewDidLoad method

    self.automaticallyAdjustsScrollViewInsets = false;
    

提交回复
热议问题