菜鸟教程小白 发表于 2022-12-13 04:27:13

ios - CASpringAnimation的initialVelocity的单位是什么?


                                            <p><p><code>CASpringAnimation</code> 的 <code>initialVelocity</code> 属性的单位是什么?我认为它可能是:</p>

<ul>
<li>每秒点数或</li>
<li><code>abs(fromValue - toValue)</code> 每秒</li>
</ul>

<p>但似乎都不是这样(不过我可能是错的)。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>显然,它确实是每秒的总动画距离。这对应于类似方法 (<a href="https://developer.apple.com/documentation/uikit/uiview/1622594-animate" rel="noreferrer noopener nofollow">https://developer.apple.com/documentation/uikit/uiview/1622594-animate</a>) 中的 <code>initialSpringVelocity</code> 参数:</p>

<blockquote>
<p>A value of 1 corresponds to the total animation distance traversed in
one second. For example, if the total animation distance is 200 points
and you want the start of the animation to match a view velocity of
100 pt/s, use a value of 0.5.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于ios - CASpringAnimation的initialVelocity的单位是什么?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/51088487/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/51088487/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - CASpringAnimation的initialVelocity的单位是什么?