标签: ios swift uikit ios-autolayout uianimation
我需要为特定视图禁用动画,因为该视图的自动布局属性使其具有动画效果。
我不能使用此
UIView.setAnimationsEnabled = false
因为它会破坏其他视图的动画。
这也不起作用:
override func layoutSubviews() { UIView.performWithoutAnimation { super.layoutSubviews() } }
有什么想法吗?