菜鸟教程小白 发表于 2022-12-12 11:26:22

ios - 动画停止时如何停止恢复到原始值


                                            <p><p>我使用核心动画来制作动画 View 。当动画停止时, View 将恢复到原来的值。我怎样才能停止恢复?
这是我的代码</p>

<pre><code>   #define p(x,y) CGPointMake(x,y)
   #define v valueWithCGPoint
    ...
    CGPoint rectL=p(463, 473);
    CGPoint rectR=p(503, 473);
    NSValue *valueL = ;
    NSValue *valueR = ;
    NSArray *firstArray=@;

    CAKeyframeAnimation * theAnimation;

    // Create the animation object, specifying the position property as the key path.
    theAnimation=;
    theAnimation.values=firstArray;
    theAnimation.duration=5.0;
    //theAnimation.calculationMode= kCAAnimationLinear;
    // Add the animation to the layer.
    ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在添加动画之前设置最终值。动画包含所需的起始值,因此它将继续按您的意愿工作。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 动画停止时如何停止恢复到原始值,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16852807/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16852807/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 动画停止时如何停止恢复到原始值