如何在iOS,Swift中为单个视图禁用自动布局动画?

时间:2018-07-25 13:34:13

标签: ios swift uikit ios-autolayout uianimation

我需要为特定视图禁用动画,因为该视图的自动布局属性使其具有动画效果。

我不能使用此

UIView.setAnimationsEnabled = false 

因为它会破坏其他视图的动画。

这也不起作用:

 override func layoutSubviews() {
        UIView.performWithoutAnimation {
            super.layoutSubviews()
        }
    }

有什么想法吗?

0 个答案:

没有答案