为存档版本版本启用 NSZombieEnabled

发布于 2024-12-27 02:45:15 字数 312 浏览 0 评论 0原文

当我使用连接的 iPad 运行时,我可以通过“启用 Zombie 对象”或通过将 NSZombieEnabled 作为环境变量传递来启用 NSZombieEnabled。然而,我似乎无法在启用 NSZombie 的情况下生成构建(即,您临时归档和分发的那种)。

如何为存档发布版本启用 NSZombieEnabled?

我用来确定是否从代码中启用它的代码是: (getenv("NSZombieEnabled") || getenv("NSAutoreleaseFreedObjectCheckEnabled" ))

When I run with a connected iPad, I can enable NSZombieEnabled via "Enable Zombie Objects" or by passing NSZombieEnabled as an Environment Variable. However, I cannot seem to produce builds (i.e., the kind you archive and distribute ad-hoc) with NSZombie enabled.

How can I enable NSZombieEnabled for archive release builds?

The code I am using to determine if it's enabled from within the code is: (getenv("NSZombieEnabled") || getenv("NSAutoreleaseFreedObjectCheckEnabled"))

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

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

发布评论

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

评论(1

悟红尘 2025-01-03 02:45:15

NSZombieEnabled 不是您所需要的。您应该让他们向您发送崩溃日志。或者您可以使用 TestFlight 的 SDK 将崩溃报告发送到您可以监控的 Web 面板。在那里,您通常可以看到崩溃发生的位置。

NSZombieEnabled is not what you need. You should have them send you their crash logs. Or you could use TestFlight's SDK to get crash reports sent to a web panel you can monitor. There you'll often be able to see where the crash is happening.

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