我的 iOS 应用程序在应用程序的某个时间点崩溃。我每次都能重现崩溃。我只是无法弄清楚它为什么会崩溃。我运行分析器并检查了僵尸 - 没有找到。
它在两个地方崩溃首先是这个方法:
-(void)toolBarHiddenBOOL)hidden
{
self.toolbar.clipsToBounds = YES;
if (!hidden){
self.toolbar.hidden = NO;
self.toolBarHeightContraint.constant = 35;
self.toolBarBottomContraint.constant = 0;
[UIView animateWithDuration:0.5
delay:0
usingSpringWithDamping:0.5
initialSpringVelocity:0.5
options:0
animations:^{
[self.view layoutSubviews];
} completion:nil];
}else
{
self.toolbar.hidden = YES;
self.toolBarHeightContraint.constant = 1;
self.toolBarBottomContraint.constant = 0;
[UIView animateWithDuration:0.5
delay:0
usingSpringWithDamping:0.5
initialSpringVelocity:0.5
options:0
animations:^{
//
[self.view layoutSubviews];
} completion:nil];
}
}
在这个链接:
self.toolbar.hidden = NO;
如果我将其注释掉 - 当应用程序再次崩溃时,断点会在下一行停止。
如果我完全注释掉这个方法,应用程序会以类似的方法崩溃,就在它下面有这样的代码:
-(void)shouldMoveCollectionViewDownBOOL)move
{
UIEdgeInsets insetDown = UIEdgeInsetsMake(41, 0, 0, 0);
UIEdgeInsets insetUp = UIEdgeInsetsMake(0, 0, 0, 0);
if (move){
self.scrollbarView.hidden = NO;
[self.tradeFeedCollectionView setContentInset:insetDown];
}else {
self.scrollbarView.hidden = YES;
[self.tradeFeedCollectionView setContentInset:insetUp];
}
}
在这一行:
self.scrollbarView.hidden = NO;
如果我将这两种方法都注释掉。没有崩溃。我还能做些什么来调试这个崩溃?
编辑
这就是控制台所说的。我之前没有将它添加到这个问题的原因是由于在应用程序运行时多次看到这个错误并且它没有导致问题。我有人认为它现在是相关的 - 但是,我不知道如何解决它。
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) (
"",
"",
"",
"" )
将尝试通过打破约束来恢复
中断 objc_exception_throw 以在调试器中捕获它。这
UIView 上的 UIConstraintBasedLayoutDebugging 类别中的方法
中列出的也可能有帮助。
这是错误的屏幕截图和堆栈跟踪的顶部:
Best Answer-推荐答案 strong>
您的堆栈跟踪似乎表明一个无限循环,您调用的方法之一(可能在委托(delegate) scrollViewDidScroll 内)导致递归。然后它会崩溃以防止您的计算机卡住。
要调试这个:
- 在这个方法的开头放一个断点,继续执行,看到每次都回到同一个地方,
- 然后,尝试确定该委托(delegate)的哪个部分可能有一些代码再次触发它。
例如,设置一些 inset 可能会使布局无效,重绘它并将滚动重新定位到之前的位置,从而导致代理的无意触发。
请注意,关于不满足约束的提示是由您的代码引起的,但这并不是引发异常的原因。但这仍然是一个错误,可能会导致意外的布局。
关于ios - 如何调试错误的访问代码 2 错误?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/23067764/
|