Is there a way to (temporarily) disable autolayout error/warning messages:
Unable to simultaneously satisfy constraints.
Probably at least one of the con
I have tried to solve this using lldb and I found a solution:
If your App encounters a layout issue, the execution is paused. With the instruction "thread return", the UIViewAlertForUnsatisfiableConstraints function which prints out the error is forced to return before the warning message is printed into the console.
With the "c" command the execution of your app is continued (Note: "Automatically continue after evaluating actions" does somehow not work in this case)
However with these automatic actions the breakpoint is likely to behave strangely if it gets hit two times in a row which will cause your app to crash. To solve this you can remove the breakpoint actions and enter the commands manually when the debugger pauses the execution of the program.