topLayoutGuide in child view controller

前端 未结 11 2047
既然无缘
既然无缘 2020-12-07 11:29

I have a UIPageViewController with translucent status bar and navigation bar. Its topLayoutGuide is 64 pixels, as expected.

However, the ch

11条回答
  •  时光取名叫无心
    2020-12-07 12:05

    you can add a constraint in the storyboard and change it in viewWillLayoutSubviews

    something like this:

    - (void)viewWillLayoutSubviews
    {
        [super viewWillLayoutSubviews];
        self.topGuideConstraint.constant = [self.parentViewController.topLayoutGuide length];
    }
    

提交回复
热议问题