Quote:
|
I tried to figure this out but I couldn't find that memory in the list. Can you point me to some document that explains how to track a specific allocation?
|
I don't have a good pointer to the docs. In ObjectAlloc it shows you a list of allocated objects. The main view is a kind of summary view. For instance I see CFString, CFNumber, CFDictionary, a bunch of different General Blocks and so on in the list, along with their stats of how much memory they take up. If I move my mouse over CFString I see a little arrow appear next to it. If I click that little arrow I get a new list of all the CFString objects in memory. If I select each one of them I can see the stack trace of where it was allocated.
I'm not saying this isn't tedious, it is. But the info is somewhere in there of what kind of blocks of memory are being allocated and not released.