LoginSignup
11
9

More than 5 years have passed since last update.

automaticallyAdjustsScrollViewInsetsを無効化できないとき

Posted at

automaticallyAdjustsScrollViewInsetsをNOにしてもなぜか20ptのinsetが入ってしまって悩んでいました。

そのときにこの記事を見て、『直下のviewに対してaddしたview(view.subviews[0])についても設定が反映される』ということがわかり、親を辿って全部NOに設定したら直りました。
http://qiita.com/yimajo/items/254c7cebab7864678246

for (UIViewController *controller = self; controller != nil; controller = controller.parentViewController) {
    controller.automaticallyAdjustsScrollViewInsets = NO;
}

あとカスタムContainerViewControllerで子をViewController hierarchyに追加する前に子のview.frameを修正してviewDidLoadが呼ばれちゃったりしてたのも修正する必要があった。

11
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
9