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