ios - 对象的完成 block - 保留周期?
<p><p>我知道...关于这个主题的另一个问题。但我真的不明白。</p>
<p>我的代码:</p>
<pre><code>//MyViewController.h
@property (strong, nonatomic) UIPageViewController *pageViewController;
//MyViewController.m
- (void)setViewControllerForIndex:(NSInteger)index {
direction:UIPageViewControllerNavigationDirectionForward
animated:animated
completion:^(BOOL finished){
; //this method is doing a lot of stuff
}];
}
</code></pre>
<p>我现在有保留周期吗?
<code>self</code> 正在完成 block 中被捕获,并且 <code>self</code> 对 <code>pageViewController</code> 有很强的引用,所以间接我有一个保留周期?</p >
<p>我必须使用 <code>__weak MyViewController *weakSelf</code> 语句并在完成 block 中使用 <code>weakSelf</code> 吗?</p>
<p>或者:即使我有一个保留周期,这有关系吗?当block完成时,block中的所有对象都会被释放,那么retain循环(或对self的强引用)也会被释放?</p>
<p><code>updatedViewControllerTo:</code> 方法也在进行 UI 更改。所以必须调用该方法。当我使用 <code>weakSelf</code> 时,我必须在 block 中创建 <code>self</code> 的强引用吗? (引用 <a href="http://masteringios.com/blog/2014/03/06/avoid-strong-reference-cycles/" rel="noreferrer noopener nofollow">http://masteringios.com/blog/2014/03/06/avoid-strong-reference-cycles/</a> 处的最后一个代码块)。 </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您确实有一个保留周期,因此请在您的完成 block 中使用 <code>weakSelf</code>:</p>
<p>为什么?</p>
<p> block 始终保留与它们一起传递的每个对象。
您正在 <code>strong</code> 引用 <code>pageViewontroller</code>,该 <code>pageViewontroller</code> 包含一个保留您的 ViewController 的 block 。</p>
<p>因此,这些对象是相互循环引用的,因此其中一个对象必须具有弱引用。否则,您的对象将不会被释放。</p>
<p>您也不应该担心 <code>weakSelf</code> 引用,因为:
由于您将 pageController 保留在 <code>viewController</code> 中,因此可以 100% 确定当您的完成 block 被执行时,您的“weakSelf”实例仍然存在。</p></p>
<p style="font-size: 20px;">关于ios - 对象的完成 block- 保留周期?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/22399734/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/22399734/
</a>
</p>
页:
[1]