ios - 调用 dealloc 后如何停止运行 block ? IOS
<p><p>我有这个代码:</p>
<pre><code>__block NSMutableArray *subCategoriesBlock = self.subCategories ;
__block UITableView *lstSubCategoriesBlock = self.lstSubCategories;
[[AsyncRequest initRequest: onCompletedBlock:^(NSMutableArray *subcategories) {
;
;
}]ExecuteRequest];
</code></pre>
<p>AsyncRequest 类将在后台发送 http 请求,然后运行 onCompletedBlock。</p>
<p>我的问题:
有时系统会释放当前 ViewController ,然后调用 onCompletedblock ,并在 <code></code> 上崩溃,因为它已经被释放了。</p>
<p>我应该怎么做,以防止系统在releaasd viewContorller时执行<code></code>?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>使用 <code>__weak</code> 以便在对象被释放时指向 <code>nil</code></p>
<pre><code>__block __weak NSMutableArray *subCategoriesBlock = self.subCategories ;
__block __weak UITableView *lstSubCategoriesBlock = self.lstSubCategories;
[[AsyncRequest initRequest: onCompletedBlock:^(NSMutableArray *subcategories) {
;
;
}]ExecuteRequest];
</code></pre></p>
<p style="font-size: 20px;">关于ios - 调用 dealloc 后如何停止运行 block ? IOS,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25524012/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25524012/
</a>
</p>
页:
[1]