ios - 为什么要设置为 nil 并释放 UIViewController 的属性?
<p><p>Apple 文档中有一些我没有得到的东西。这是 UIViewController 类的 -(void)viewDidUnload 的摘录:</p>
<blockquote>
<p>your dealloc method should release
each object but should also set the
reference to that object to nil before
calling super.</p>
</blockquote>
<p>如果您在代码中对 xxx 属性使用保留和合成,为什么大多数 Apple 示例在 viewDidUnload 中设置为零:</p>
<pre><code>self.xxx = nil;
</code></pre>
<p>但建议在 dealloc 中同时设置为零和释放:</p>
<pre><code>;
self.xxx = nil;
</code></pre>
<p>为什么对于 dealloc 设置为零还不够?</p>
<p>ps : 我知道我的问题和这个 <a href="https://stackoverflow.com/questions/5090427/why-release-a-property-that-youve-already-set-to-nil" rel="noreferrer noopener nofollow">"Why release a property that you've already set to nil?"</a> 非常相似但不完全一样</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><pre><code>;
self.xxx = nil;
</code></pre>
<p>这是错误的,因为 xxx 会被释放两次,推荐的方式是释放 iVar 并将其设置为 nil,而不是使用属性:</p>
<pre><code>;
xxx = nil;
</code></pre>
<p>不只是使用的原因</p>
<pre><code>self.xxx = nil;
</code></pre>
<p>是调用setter方法可能有一些副作用,可能会导致dealloc方法出现问题(即使用其他可能已经被释放的iVar)</p></p>
<p style="font-size: 20px;">关于ios - 为什么要设置为 nil 并释放 UIViewController 的属性?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/5731560/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/5731560/
</a>
</p>
页:
[1]