我有一个基于约束的高度动画。然而,当动画开始时,它将视图的中心视为锚点而不是顶部。
我想让它以固定顶部为动画并从底部收缩。
对不起,我的英语不是母语人士。
我的观点主播:
top: superview
left: superview
right: superview
bottom: nil
// current height constant 200
view.height.constant = 0
UIView.animation(withDuration: 0.2, animations: {
view.layoutIfNeded()
}}
答案 0 :(得分:6)
尝试代替您的观点:
superView.layoutIfNeeded()
这将布局子视图,你的动画应该有效。
所以替换
// current height constant 200
view.height.constant = 0
UIView.animation(withDuration: 0.2, animations: {
view.layoutIfNeded()
}
与
// current height constant 200
yourView.height.constant = 0
UIView.animation(withDuration: 0.2, animations: {
yourViewSuperview.layoutIfNeded()
}
请参阅layoutIfNeeded()apple docs:[1]https://developer.apple.com/documentation/uikit/uiview/1622507-layoutifneeded
答案 1 :(得分:0)
更改代码
// current height constant 200
view.height.constant = 0
UIView.animation(withDuration: 0.2, animations: {
view.layoutIfNeded()
}}
到
UIView.animate(withDuration: 2.0, animations: {
// current height constant 200
view.height.constant = 0
}}
希望它有所帮助!