ruipacheco
ruipacheco

Reputation: 16442

How can I read Instruments?

I have Xcode 6 and the labels in Instruments seem to have changed from the last time I looked at it. Used to be that Live Bytes represented the total amount of memory the application was consuming and now I have other columns. Right clicking on the columns shows a number of other values to be added but not no more Live Bytes.

How do I know how much memory my application is currently consuming and not the total? Is it Persistent Bytes?

Upvotes: 2

Views: 932

Answers (1)

Swift Dev Journal
Swift Dev Journal

Reputation: 20088

Yes, the Persistent Bytes column shows how much memory your application is currently using. The Live Bytes column changed to Persistent Bytes in Xcode 6.

Upvotes: 4

Related Questions