XCode 和 Instruments:如何获取应用程序内存峰值

发布于 2024-09-09 12:15:40 字数 103 浏览 9 评论 0原文

我想显示我在模拟器中运行的 iPhone 应用程序的内存峰值(不是“泄漏”,而是短时间内使用的最高内存量)。我应该准确地看哪里? PS 我正在使用 libxml2 并且我认为不考虑库完成的分配

I'd like to show the memory peak (not 'leak', but the highest quantity of memory used in small amount of time) of an iPhone app i am running in the simulator. Where shall i look precisely?
PS I am using libxml2 and i suppose that the allocations done by the library aren't considered

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

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

发布评论

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

评论(1

只是在用心讲痛 2024-09-16 12:15:40

通过选择运行|使用“分配”性能工具。使用性能工具运行 | Xcode 中的分配。这将向您显示应用程序分配的所有内容,包括 libxml2 中的项目。您可能看不到库中内存分配的确切行号,但您将能够看到大部分分配发生在哪里。

Use the "Allocations" performance tool by selecting Run | Run with Performance Tool | Allocations in Xcode. This will show you everything that your app allocates including items in libxml2. You may not to see exact line numbers of memory allocations in the library, but you will be able to see where the majority of your allocations are happening.

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