Jacksonkr
Jacksonkr

Reputation: 32247

new to profiling allocations in xcode

I'm doing a screenshot of the allocations in my project. I've simulated a memory warning at 50 seconds, but the allocations never go back down. Maybe I don't understand this one correctly?

screenshot of profile

Upvotes: 0

Views: 202

Answers (2)

Jacksonkr
Jacksonkr

Reputation: 32247

It turns out that NONE of my big objects (UIViews / Controllers) were ever being released. After diving in I'm seeing some up and down like I should be.

Upvotes: 0

jbduzan
jbduzan

Reputation: 1126

I think the graph is displaying the overall bytes, ie all the memory consumed by the application during her running time

Upvotes: 1

Related Questions