I've been battling an issue in Xcode for a couple of days now and I can't figure out what's wrong. I've created a simple UIViewcontroller with three separate Textfields. When I run the app in the simulator or on a physical device, I get this warning in the console when I tap on the textfields. It happens only when I tap on the next textfield without dismissing the keyboard first. If I dismiss the keyboard after every textfield input, there are no debug console complaints. But when I don't the console returns the following on tapping the next textfield.
"[LayoutConstraints] Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it.
"<NSLayoutConstraint:0x281f15bd0 'assistantHeight' TUISystemInputAssistantView:0x14602a340.height == 55 (active)>",
"<NSLayoutConstraint:0x281f2de00 'assistantView.bottom' TUISystemInputAssistantView:0x14602a340.bottom == _UIKBCompatInputView:0x1460631d0.top (active)>",
"<NSLayoutConstraint:0x281f2fcf0 'assistantView.top' V:|-(0)-[TUISystemInputAssistantView:0x14602a340] (active, names: '|':UIInputSetHostView:0x143e5cd50 )>",
"<NSLayoutConstraint:0x281f17200 'inputView.top' V:|-(0)-[_UIKBCompatInputView:0x1460631d0] (active, names: '|':UIInputSetHostView:0x143e5cd50 )>"
Will attempt to recover by breaking constraint Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger. The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in may also be helpful."
I have created a new, clean UIViewcontroller with nothing inside, just three simple textfields and I still experience this issue. I've done this, because in my original project, I had the textfields arranged inside a stackview and thought that might be causing the issue, but it clearly isn't.
Has anyone encountered this issue?
Thanks very much for your time and any help!
