我的 iPhone 应用程序使用了多少内存(来自模拟器)
我知道这与 Instruments 有关,但这有点令人困惑,并且在 Google 上搜索 Instruments 并没有多大帮助。
我想知道我的应用程序运行情况如何,例如它使用了多少内存。我只是不知道在哪里可以找到类似的东西: “据我们从模拟器中可以得知,您的应用程序当前将在真实的 iPhone 设备上使用 xx MB 的 RAM。”
我需要有关如何获取此信息的帮助。
I know this has something to do with Instruments, but well it's kind of confusing and searching for Instruments on Google doesn't help much.
I'd like to know how well my app runs, like how much memory it uses. I just don't know where to find something like:
"As close as we can tell from the simulator you'll app will currently be using xx MBs of RAM on a real iphone device."
I need help on how to get this information.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
出于多种原因,您不应该在模拟器中测试内存使用情况,其中一些原因是:
但是,如果您可以在设备上运行,则应该使用 Instruments 中的内存监视器和对象分配工具来监视内存使用情况。
You shouldn't test your memory usage in the simulator for a number of reasons, some of which are:
However, if you can run on a device, you should use the Memory Monitor and Object Allocations instruments in Instruments to monitor your memory usage.
您应该使用“运行/使用性能工具/对象分配”。图表将显示所使用的内存。
然后选中“已创建且仍然存在”框以了解内存中的对象。
You should use the Run/With Performance Tools/Object Allocations. The graphs will show you the memory used.
And then you check the box "Created and Still Living" to know what objects are in memory.