Long time lurker - first time poster!
I am having an issue while recreating a bar with a UITextView like WhatsApp does it.
UITextView
I am using a custom <
100% working and very simple solution is to enumerate all constraints and set new height value. Here is some C# code (xamarin):
foreach (var constraint in inputAccessoryView.Constraints) { if (constraint.FirstAttribute == NSLayoutAttribute.Height) { constraint.Constant = newHeight; } }