采用Autolayout布局时,调试由于限制条件冲突出现的警告。

采用Autolayout布局时,由于限制条件冲突出现的警告:

Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger。解决此警告的时候,如果只是通过审阅代码来查找问题,会很麻烦。我们可以打一个符号断点,有利于查找问题。


添加符号断点的步骤:
1、Command + 7,切换到断点导航栏。
2、点击左下方的“+”添加按钮。
3、选择“Symbolic Breakpoint...”。
5、“Symbolic”填上“UIViewAlertForUnsatisfiableConstraints”。如果需要执行另外操作的时候,点击“Add Action”,例如打印当前的约束“po [[UIWindow keyWindow] _autolayoutTrace]”。

经过以上步骤,程序就会断到导致冲突的地方了。

你可能感兴趣的:(iOS开发过程中遇到的BUG)