📜  swift 如何动画约束更改 - Swift 代码示例

📅  最后修改于: 2022-03-11 15:01:02.899000             🧑  作者: Mango

代码示例1
You need to first change the constraint and then animate the update.

self.nameInputConstraint.constant = 8

UIView.animate(withDuration: 0.5) {
    self.view.layoutIfNeeded()
}