본문 바로가기
기술/iOS

XCode Debugging tool Instrument 간략 설명.

by 프리지크 2013. 3. 15.
반응형

 XCode로 디버깅 할 때 쓰는 Instrument에서 컬럼에 대한 간략하게 정리해본다.


- Live Bytes

    : 해당 Category의 객체에 현재 할당(allocated)된 메모리의 사용량을 보여준다.

- # Living

    : 메모리에 남아 있는 해당 Category의 객체의 수를 보여준다.

- Overall Bytes

    : 해당 Category의 객체가 현재까지 사용한 메모리의 총량을 보여준다. 총량은 메모리에 남아 있지 않은 것도 포함한다.  

 - #Overall

    : 현재까지 사용한 객체의 총 수를 보여준다.

 - #Transitory

    : #Living 과 #Overall의 차이.



참고 : 

http://d.hatena.ne.jp/shu223/20110502/1304333582

https://developer.apple.com/library/mac/#documentation/developertools/conceptual/InstrumentsUserGuide/Introduction/Introduction.html

반응형