I've got an app that initially loads in one view controller for a period of time before it's replaced by a UINavigationController (and its corresponding root view controller) in the Window's view. Once the app is being managed by the Navigation Controller I am releasing the previous View Controller and its View. It's difficult for me to confirm that the retain count has reached zero and these objects have successfully been released.
Simply asking for its retainCount is unreliable - as it is for many private objects in the framework. Using the Debugger to follow the object's life quickly turns to "out of scope" messages before, what I understand about the debugger, allows me to see the objects to their demise. What can I do to verify objects are being released properly (aside from over-releasing to the point of crashing)? Perhaps something in ObjectAlloc in Instruments?