为什么我的 iPhone 应用程序出现 main 泄漏?

发布于 2024-08-22 06:53:45 字数 451 浏览 8 评论 0原文

请参阅下面的屏幕截图,这是 Leaks Instrument 在我的应用程序中发现的唯一泄漏。 main 泄漏似乎很奇怪,因为它是开箱即用的。这常见吗?

main.m

调用堆栈顶部

调用堆栈底部

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?

main.m

top of call stack

bottom of call stack

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

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

发布评论

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

评论(1

心在旅行 2024-08-29 06:53:45

这通常表明泄漏发生在应用程序委托加载之前的某个地方。检查任何添加的资源,例如编译的库。

将此代码源或您的应用程序委托源拖到 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.

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