I have a UIView and I set the constraints using Xcode Interface Builder.
UIView
Now I need to update that UIView instance\'s height constant progra
To update a layout constraint you only need to update the constant property and call layoutIfNeeded after.
myConstraint.constant = newValue myView.layoutIfNeeded()