First time question, so don't hold that against me...
For standard objects as well as sub-classes that I create, it is fairly straightforward to find in the Allocations or the Leaks Instruments a particular object. i.e. if I want to see a subclass of UIViewController called ViewController, I can scroll through the Allocations instrument and see the number of living objects increasing and decreasing. Similarly, if that object is leaked the Leaks Instrument will list it. I can even search for specific objects.
However, I'm not sure what to look for when looking for Objective-C blocks. I've noticed in the Leaks Instrument that a leaked block turns up as __NSMallocBlock. However, when using the Allocations Instrument a search for __NSMallocBlock does not show up.
Any ideas what to look for in the Allocations Instrument to track Objective-C blocks?
Many Thanks