菜鸟教程小白 发表于 2022-12-13 05:54:14

ios - CAShapeLayer 的 strokeEnd 没有动画


                                            <p><p>这是我用来为我的 <code>CAShapeLayer</code> 制作动画的代码:</p>

<pre><code>_progressBarLayer.strokeEnd = CGFloat(_progressToDrawForProgress(progress))

let progressAnimation = CABasicAnimation(keyPath: &#34;strokeEnd&#34;)
progressAnimation.duration = CFTimeInterval(1.0)
progressAnimation.fromValue = CGFloat(self.progress)
progressAnimation.toValue = _progressBarLayer.strokeEnd
progressAnimation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseIn)

_progressBarLayer.addAnimation(progressAnimation, forKey: &#34;progressAnimation&#34;)
</code></pre>

<p>我已经使用委托(delegate)进行了测试,以查看动画是否播放,并且确实播放。记录在正确的位置开始和停止。</p>

<p>此代码在 <code>setProgress(progress: CGFloat, animated: Bool)</code> 函数中,如果动画为真,则运行。</p>

<p>这里有什么明显的地方吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>长答案:事实证明,动画没有播放是因为使用 quartz 在 CAShapeLayer 上方绘制了一些东西,所以我认为 CAShapeLayer(应该是动画的)实际上是同一层的 Quartz 绘图。 </p>

<p>简答:不要使用 Quartz 绘制到图形上下文</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CAShapeLayer 的 strokeEnd 没有动画,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29056332/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29056332/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CAShapeLayer 的 strokeEnd 没有动画