Autorelease pool

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Autorelease pool相关的知识,希望对你有一定的参考价值。

根据苹果官方文档中对 Using Autorelease Pool Blocks 的描述,我们知道在下面三种情况下是需要我们手动添加 autoreleasepool 的:

  1. 如果你编写的程序不是基于 UI 框架的,比如说命令行工具;

  2. 如果你编写的循环中创建了大量的临时对象;

  3. 如果你创建了一个辅助线程。

  4.  

以上是关于Autorelease pool的主要内容,如果未能解决你的问题,请参考以下文章

75. Autorelease机制及释放时机

autorelease基本概念

Autorelease Pool

如果我正在使用GCD,我应该创建@autorelease池

autorelease,函数完成时释放对象

autorelease 对象啥时候释放?