living column in instruments
Posted
by
dubbeat
on Stack Overflow
See other posts from Stack Overflow
or by dubbeat
Published on 2011-03-16T16:09:19Z
Indexed on
2011/03/16
16:09 UTC
Read the original article
Hit count: 157
iphone
|instruments
In the context of allocations what exactly does the living column mean? Does it mean the number of times an object was created or does it mean how many instances of an object there is?
I ask because I'm testing going in and out of a view. When I enter the view I create a class "myClass". When I exit the view I nil "myClass" and release it. If I go in and out of the view 6 times for example the living column in instruments for "myClass" says 6.
Is this normal or is it not being released properly?
© Stack Overflow or respective owner