自动布局动画以中心为锚点

时间:2017-07-27 07:27:13

标签: ios swift3 autolayout ios-animations

我有一个基于约束的高度动画。然而,当动画开始时,它将视图的中心视为锚点而不是顶部。

我想让它以固定顶部为动画并从底部收缩。

对不起,我的英语不是母语人士。

我的观点主播:

top: superview
left: superview
right: superview
bottom: nil

// current height constant 200
view.height.constant = 0

UIView.animation(withDuration: 0.2, animations: {
    view.layoutIfNeded()
}}

2 个答案:

答案 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
}}

希望它有所帮助!