UIScrollView has a different y position when seguing from different view controllers

后端 未结 2 1323
有刺的猬
有刺的猬 2021-01-28 06:14

Not sure how to explain this, simply when seguing from one controller the scroll view is lower on the screen than from another segue where it is correct.

2条回答
  •  情书的邮戳
    2021-01-28 07:07

    Select your view controller which has lower scroll view and unselect Adjust Scroll View Insets

    See below image:


    or you can do it programmatically

    self.scrollView.contentOffset = CGPointZero;
    self.scrollView.contentInset = UIEdgeInsetsZero;
    

提交回复
热议问题