为存档版本版本启用 NSZombieEnabled
当我使用连接的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.