ios - 如何在ARC或非ARC模式下释放dispatch_async

时间:2015-04-13 04:29:57

标签: ios objective-c multithreading automatic-ref-counting dispatch

我正在测试dispatch_async。如果我运行以下代码100次,应用程序将生成100个线程并保留它们。请参阅下面的代码:

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^{
  [[CustomerDB sharedCustomerDB] updateCustomers:accumulator];
});

这些线程什么时候在ARC发布? (还有非ARC)。

感谢阅读和向我解释这一点。

0 个答案:

没有答案