OStack程序员社区-中国程序员成长平台

标题: iOS - 移动 View 没有动画 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 17:01
标题: iOS - 移动 View 没有动画

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

[UIView animateWithDuration:2.0f animations:^{
    [self.view layoutIfNeeded];
    self.toolbarBottomLayoutConstraint.constant = editing ? 0 : -44;
}];

有人知道为什么吗?



Best Answer-推荐答案


我试过只是改变动画 block 语句,它对我有用:

[UIView animateWithDuration:2.0 animations:^{
    self.bottomMargin.constant = editing ? 0 : -44; 
    [self.view layoutIfNeeded]; 
}];

关于iOS - 移动 View 没有动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20395077/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4