菜鸟教程小白 发表于 2022-12-13 03:15:20

ios - 使用 UIModalPresentationCurrentContext 后如何为 View 设置动画


                                            <p><p>当我遇到 <a href="https://stackoverflow.com/questions/13668526/transparent-viewcontroller-to-see-parent-below" rel="noreferrer noopener nofollow">this post</a> 时,我正在寻找有关如何在 iOS 对话框中包装 View 的解决方案。 ,其中有这一行:</p>

<pre><code>vc.modalPresentationStyle = UIModalPresentationCurrentContext;
</code></pre>

<p>它基本上解决了我创建/模仿对话框的问题,但它不会像帖子中提到的那样在过渡时设置动画。那么获得上滑动画最简单的方法是什么?</p>

<p>ps.我会在该帖子中将此作为子问题提出,但我没有 50 条代表评论:(</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>好吧,一旦你的 View 被显示出来,你几乎可以在其中做任何你想要的动画。你可以做一个简单的 <code></code> 类的交易,但我个人会使用 <code>CATransition</code> 来做这件事,它相对简单。</p>

<h2>QuartzCore 之道</h2>

<p>首先,我假设您呈现的 View 是透明的,并且内部还有另一个 View ,其行为类似于对话框。将要呈现的 ViewController ,我们称它为 <code>PresentedViewController</code> 并保存其中 View 的 <code>dialog</code> 属性。</p>

<h3>PresentedViewController.m</h3>

<p>(需要链接到 <code>QuartzCore.h</code>)</p>

<pre><code>#import &lt;QuartzCore/QuartzCore.h&gt;

@implementation PresentedViewController

- (void)viewWillAppear:(BOOL)animated
{
    ;

    if (animated)
    {
      CATransition *slide = ;

      slide.type = kCATransitionPush;
      slide.subtype = kCATransitionFromTop;
      slide.duration = 0.4;
      slide.timingFunction = ;

      slide.removedOnCompletion = YES;

      ;
    }
}
</code></pre>

<h2>变得花哨</h2>

<p>这样做的好处是您可以创建自己的自定义动画,并使用其他属性。</p>

<pre><code>CABasicAnimation *animations = ;

CATransform3D transform;

// Take outside the screen
transform = CATransform3DMakeTranslation(0, self.view.bounds.size.height, 0);

// Rotate it
transform = CATransform3DRotate(transform, M_PI_4, 0, 0, 1);

animations.fromValue    = ;
animations.toValue      = ;
animations.duration   = 0.4;
animations.fillMode   = kCAFillModeForwards;
animations.removedOnCompletion = YES;
animations.timingFunction = ;

;
</code></pre>

<p>在这里, View 将通过平移移出屏幕,然后旋转,然后滑入,回到原来的变换。我还修改了计时功能以提供更平滑的曲线。</p>

<p>考虑到我只是对 CoreAnimation 的可能性进行了初步了解,我已经在这条道路上工作了三年,并且我已经成长为喜欢 <code>CAAnimation</code> 所做的所有事情。 </p>

<p><strong>Storyboard 专业提示:</strong>如果您构建自己的自定义 <code>UIStoryboardSegue</code> 子类,您可以很好地完成此操作。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 UIModalPresentationCurrentContext 后如何为 View 设置动画,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17937347/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17937347/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 UIModalPresentationCurrentContext 后如何为 View 设置动画