菜鸟教程小白 发表于 2022-12-12 17:01:01

iOS - 移动 View 没有动画


                                            <p><p>我的 View 上有工具栏,我想用动画移动它,但动画不起作用,工具栏快速移动到新位置。我用它:</p>

<pre><code>[UIView animateWithDuration:2.0f animations:^{
    ;
    self.toolbarBottomLayoutConstraint.constant = editing ? 0 : -44;
}];
</code></pre>

<p>有人知道为什么吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我试过只是改变动画 block 语句,它对我有用:</p>

<pre><code>[UIView animateWithDuration:2.0 animations:^{
    self.bottomMargin.constant = editing ? 0 : -44;
    ;
}];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS - 移动 View 没有动画,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/20395077/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/20395077/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS - 移动 View 没有动画