菜鸟教程小白 发表于 2022-12-12 09:43:22

ios - 滑动后调整 super View 大小时,UIPageViewController View 会跳转


                                            <p><p>我有一个 ViewController ,它以编程方式将 UIPageViewController 添加到 subview (我们称之为“覆盖”)。由于页面 ViewController 的每个页面都有不同的高度,我在“overlay” subview 上添加了一个 NSLayoutConstraint。</p>

<p>在每次滑动时,我都会计算即将到来的 ViewController 的高度并相应地调整覆盖 View 的大小:</p>

<pre><code>- (void)resizeOverlayToBottomOf:(UIView *)element {

   // resize overlay in parent view controller so it shows the element
   float bottomOfElement = element.frame.origin.y + element.frame.size.height + 20;
   ;

   ;
   ;
   ;
}
</code></pre>

<p>一切都按预期工作...直到我想用动画更改叠加层大小。<br/>
我用动画 block 包裹了上述方法的最后两行:</p>

<pre><code>[UIView animateWithDuration:0.25f animations:^{
   ;
   ;
}];
</code></pre>

<p>现在滑动完成后,覆盖 View 的高度会随着动画的变化而变化。 </p>

<p>问题在于,当动画播放时,页面 ViewController 的内容会快速回到屏幕外的某个位置并滑回。我尝试添加约束以确保页面 ViewController 内容的固定宽度,但似乎没有任何作用诀窍。</p>

<p>任何关于如何在不影响页面 ViewControllerView 的情况下为父 View 设置动画的提示都将受到高度赞赏!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我最近遇到了同样的问题。这显然有效:</p>

<pre><code>- (void)pageViewController:(UIPageViewController *)pageViewController didFinishAnimating:(BOOL)finished previousViewControllers:(NSArray *)previousViewControllers transitionCompleted:(BOOL)completed
{
    if (completed)
    {
      CGFloat height = ;
      ;
      [CATransaction setCompletionBlock:^{
            self.heightConstraint.constant = height;
            [UIView animateWithDuration: 0.25
                                  delay: 0
                              options: UIViewAnimationOptionCurveEaseInOut
                           animations:^{

                                 ;
                           }
                           completion:^(BOOL finished) {

                           }];
      }];
      ;
    }
}
</code></pre>

<p>我的理解是一个动画会干扰另一个动画。 <br/>
CATransaction 拦截当前动画并在当前动画完成后执行它的完成 block 。 <br/>
这对我来说很好。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 滑动后调整 superView 大小时,UIPageViewControllerView 会跳转,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23491061/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23491061/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 滑动后调整 super View 大小时,UIPageViewController View 会跳转