更新约束动画

Posted 怡情_老二

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更新约束动画相关的知识,希望对你有一定的参考价值。

    _isOrderOpen = !_isOrderOpen;
    [UIView animateWithDuration:0.5 animations:^{
        if (_isOrderOpen) {
            _orderControlConstant.constant = 50;
        } else {
            _orderControlConstant.constant = 0;
        }
        [self.view layoutIfNeeded];
    }];

 

以上是关于更新约束动画的主要内容,如果未能解决你的问题,请参考以下文章

Masonry整体动画更新约束

更新约束动画

使用 Swift 更新动画中的约束

在 Swift 中以编程方式更新约束的常量属性?

通过更新约束滑入 UIView

以编程方式修改自动布局约束时视图不更新