autolayout Debug

对于 iOS 和 OS X 开发者来说,Autolayout已经逐渐变成一个至关重要的开发工具。它让多屏幕适配变得小菜一碟(peasy),但是有些时候它还是会把我们搞疯掉,因为它总是会出现那些啰嗦又没啥用处的错误警告。

就像这样:

1
2
3
4
5
6
7
8
9
10
11
12
13
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.
(Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)

(...........)  


Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.

这么长的错误日志!!!!尼玛让谁看!!!

但是我们仔细看一下,观察 NSLayoutConstraint 部分。发现它倒数第二行还是有给我们点希望去解决这个错误的。在 UIViewAlertForUnsatisfiableConstraints 添加一个Symbolic breakpoint 断点。
既然这样,我们就去试一下… 

尼玛!! 毛用都没有啊!!它停在了线程堆栈上,然而LLDB依旧一片黑暗… 

于是这里就有一个小技巧(Trick), 来让你的symbolic breakpoint变得更加有用。为你的ObjC项目添加
po [[UIWindow keyWindow] _autolayoutTrace]

或者为你的Swift项目添加 

expr -l objc++ -O – [[UIWindow keyWindow] _autolayoutTrace]

现在你就会在命令控制台看到你的UIView 的层次结构还有出现错误的地方。

1
2
3
4
5
UIWindow:0x7f9481c93360
|   •UIView:0x7f9481c9d680
|   |   *UIView:0x7f9481c9d990- AMBIGUOUS LAYOUT for UIView:0x7f9481c9d990.minX{id: 13}, UIView:0x7f9481c9d990.minY{id: 16}
|   |   *_UILayoutGuide:0x7f9481c9e160- AMBIGUOUS LAYOUT for _UILayoutGuide:0x7f9481c9e160.minY{id: 17}
|   |   *_UILayoutGuide:0x7f9481c9ebb0- AMBIGUOUS LAYOUT for _UILayoutGuide:0x7f9481c9ebb0.minY{id: 27}

而当你在这个地方继续向下执行,它就会停在下一个你可能出现错误的地方。但是如果这样子你还是很难发现你的错误的话,你可以执行下面这个语句

1
2
(lldb) e id $myView = (id) 0x7f9ea3d43410
(lldb) e (void)[$myView setBackgroundColor:[UIColor blueColor]]

先获取UIView,然后改变它的背景色

你就会看到出错误的视图主动显示出来了~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值