Firdous
Firdous

Reputation: 4652

How to get iOS memory consumption info of simulator?

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.

Upvotes: 4

Views: 11644

Answers (2)

Ankish Jain
Ankish Jain

Reputation: 11361

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.

Memory profiling

Upvotes: 7

Selvin
Selvin

Reputation: 12483

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.

Upvotes: 7

Related Questions