如何获取iOS模拟器的内存消耗信息?
运行iOS模拟器,有什么方法可以获取与模拟设备的内存消耗相关的信息吗?只是为了了解该应用程序有多好以及我是否没有由于 plist 中数据的大量使用以及类似的事情而耗尽内存。
Running an iOS simulator, is there any way to get information related to memory consumption of your simulated device? just to get an idea of how good the application is and whether I am not running out of memory due to extensive usage of data in plist and things like that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 XCode Profile 工具来检查分配、内存泄漏。并且有一个活动监视器来检查资源利用率。
Product->Profile
(在 XCode 4.2 中),然后选择您想要分析应用程序的选项。You can use XCode Profile tools to check allocation, memory leaks. And there is an activity monitor to check the resource utilization.
Product->Profile
(in XCode 4.2) and then choose the option you want to profile your application.您可以在内存选项卡下进行检查,而不是在运行时进行分析。它会给你动态的内存消耗。单击“内存”可显示详细信息。您也可以直接从该详细信息进行分析。不仅是内存,您还可以检查其他CPU、磁盘、网络。
Instead of profiling while running you can check under memory tab. It will give you dynamic memory consumption. Click on Memory to reveal details . You can directly profile from that detail too. Not only Memory , you can check other CPU,DISK,NETWORK too.