我的 iPhone 应用程序使用了多少内存(来自模拟器)

发布于 2024-08-31 12:56:35 字数 208 浏览 3 评论 0原文

我知道这与 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 技术交流群。

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

发布评论

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

评论(2

遮云壑 2024-09-07 12:56:35

出于多种原因,您不应该在模拟器中测试内存使用情况,其中一些原因是:

  • 模拟器在您的计算机上运行,​​而不是在手机上运行,​​因此最大内存量与您拥有的 RAM 量相同安装在您的 Mac 中。
  • 模拟器以及使用模拟器 SDK 构建的应用程序不会使用与设备上相同的库,因此可能会使用不同的内存量。

但是,如果您可以在设备上运行,则应该使用 Instruments 中的内存监视器和对象分配工具来监视内存使用情况。

You shouldn't test your memory usage in the simulator for a number of reasons, some of which are:

  • The simulator is running on your computer, not the phone, so the maximum amount of memory is the same as the amount of ram you have installed in your Mac.
  • The simulator, and your app when build with the simulator SDK, do not use the same libraries as they would on the device, and as a result, could use a different amount of memory.

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.

〆凄凉。 2024-09-07 12:56:35

您应该使用“运行/使用性能工具/对象分配”。图表将显示所使用的内存。

然后选中“已创建且仍然存在”框以了解内存中的对象。

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.

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