XCode 和 Instruments:如何获取应用程序内存峰值
我想显示我在模拟器中运行的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过选择运行|使用“分配”性能工具。使用性能工具运行 | 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.