Answers for "swift constraint animation"

0

swift how to animate constraint change

You need to first change the constraint and then animate the update.

self.nameInputConstraint.constant = 8

UIView.animate(withDuration: 0.5) {
    self.view.layoutIfNeeded()
}
Posted by: Guest on January-13-2020
0

swift animate constraint

self.nameInputConstraint.constant = 10
UIView.animate(withDuration: 0.5) {
    self.view.layoutIfNeeded()
}
Posted by: Guest on July-26-2021

Code answers related to "Swift"

Browse Popular Code Answers by Language