Weird uitableview behaviour in iOS11. Cells scroll up with navigation push animation

前端 未结 12 1418
粉色の甜心
粉色の甜心 2021-01-29 18:34

I have recently migrated some code to new iOS 11 beta 5 SDK.

I now get a very confusing behaviour from UITableView. The tableview itself is not that fancy. I have custo

12条回答
  •  囚心锁ツ
    2021-01-29 19:09

    Here's how I managed to fix this issue while still allowing iOS 11 to set insets automatically. I am using UITableViewController.

    • Select "Extend edges under top bars" and "Extend edges under opaque bars" in your view controller in storyboard (or programmatically). The safe area insets will prevent your view from going under the top bar.
    • Check the "Insets to Safe Area" button on your table view in your storyboard. (or tableView.insetsContentViewsToSafeArea = true) - This might not be necessary but it's what I did.
    • Set the content inset adjustment behavior to "Scrollable Axes" (or tableView.contentInsetAdjustmentBehavior = .scrollableAxes) - .always might also work but I did not test.

    One other thing to try if all else fails:

    Override viewSafeAreaInsetsDidChange UIViewController method to get the table view to force set the scroll view insets to the safe area insets. This is in conjunction with the 'Never' setting in Maggy's answer.

    - (void)viewSafeAreaInsetsDidChange {
        [super viewSafeAreaInsetsDidChange];
        self.tableView.contentInset = self.view.safeAreaInsets;
    }
    

    Note: self.tableView and self.view should be the same thing for UITableViewController

提交回复
热议问题