是否应该为已发布的应用程序关闭 NSZombieEnabled?

发布于 2024-12-23 04:42:11 字数 220 浏览 0 评论 0原文

启用 NSZombieEnabled 后,它将针对运行时发生的 EXC_BAD_ACCESS 问题提供一些防护。

我正在双重努力以确保没有/很少内存泄漏,但我可能会过度释放,因此打开 NSZombieEnabled 有助于防止这种情况,对吗?或者打开 NSZombieEnabled 后,所有内存释放操作都会转换为无操作吗?如果是这样的话,这将是一个大问题。

With NSZombieEnabled turned on it will provide some guard against the EXC_BAD_ACCESS issues happening at runtime.

I am doing dual-diligence to make sure no/little memory leaks, but I might over releasing so having NSZombieEnabled turned on would help prevent that, am I right? Or with NSZombieEnabled turned on, would all memory releasing operations be translated into no-op? It'll be a big problem is that's the case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

错々过的事 2024-12-30 04:42:12

您应该将其关闭,因为打开 NSZombieEnabled 意味着您分配的对象不会被释放,因此您的应用程序将会泄漏。

http://www.cocoadev.com/index.pl?NSZombieEnabled

''NSZombieEnabled 应该不会永久保留在原处,因为默认情况下不会真正释放任何对象,从而使您的应用程序使用大量内存”

You should turn it off because having the NSZombieEnabled on means the objects you allocated are not deallocated, hence your app will be leaking.

http://www.cocoadev.com/index.pl?NSZombieEnabled

''NSZombieEnabled should not be left in place permanently, as by default no objects will ever be truly deallocated, making your application use tremendous amounts of memory''

翻了热茶 2024-12-30 04:42:11

不,您不应附带 NSZombiesEnable。僵尸通过将已释放对象的 isa 指针强制转换为“僵尸”类来工作。除非启用 NSDeallocateZombies,否则不会释放此对象的存储空间。因此,如果启用僵尸,则可能会泄漏内存。

此外,Apple 表示不要在 NSDebug.h 中启用它:

不要依赖代码中任何这些符号的存在
在该软件的未来版本中。当然,不依赖于
生产代码中此标头中的符号。

如果在AppStore上分发,我的猜测是你不会通过审核。

No, you should not ship with NSZombiesEnable. Zombies work by casting the isa pointer of deallocated objects to a "zombie" class. The storage for this object is not freed unless NSDeallocateZombies is enabled. Therefore, if you leave zombies enabled, you may be leaking memory.

In addition, Apple says not to leave it enabled in NSDebug.h:

Do not depend on the existance of any of these symbols in your code
in future releases of this software. Certainly, do not depend on the
symbols in this header in production code.

If distributing on the AppStore, my guess is that you would not pass the review.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文