为什么我的 iPhone 应用程序出现 main 泄漏?
请参阅下面的屏幕截图,这是 Leaks Instrument 在我的应用程序中发现的唯一泄漏。 main 泄漏似乎很奇怪,因为它是开箱即用的。这常见吗?
See the screenshot below, this is the only leak the Leaks Instrument finds in my app. Seems odd that main is leaking since it's out-of-the-box. Is this common?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这通常表明泄漏发生在应用程序委托加载之前的某个地方。检查任何添加的资源,例如编译的库。
将此代码源或您的应用程序委托源拖到 Instruments 中,它可能会向您显示调用堆栈,以便您可以跟踪它。
Edit01:
请参阅 IPHONE:使用仪器分析泄漏,了解如何查看源代码的示例仪器仪表。
This usually indicates that the leak is occurring somewhere before the app delegate loads. Check any added resources like compiled libraries.
Drag this code source or your app delegate source into Instruments and it might show you the call stack so you can track it down.
Edit01:
See IPHONE: Analyzing leaks with instruments for an example of how to view source in Instruments.