views:

22

answers:

1

Is there any way to query the number of objects that reside in a given NSAutoreleasePool?

This is really important for me, because in my game there are several loops and I need to know how effectively I'm autoreleasing my autoreleased objects.

+2  A: 

Nope.

Presumably you've got some kind of master control loop that runs your game. Just create an autorelease pool at the beginning of each iteration and destroy it and the end of the iteration.

Dave DeLong