I used to verify that same of my variable haves the expected retain count using some [myVar retainCount] under the debugger, especially for var that did not have a custom dealloc.
How do you do this in Arc mode? How do you ensure that there is no memory leak?
Note: I understand that ARC should handle for me, but life is far from being perfect, and in real life you have object that are sometime allocated by third party library (using retain?) and neither desallocated
Image that I do this:
MyObj *myObj=[[MyObj alloc] init];
then I call
[somethingElse doSomethingWithMyObj:myObj];
and later, I do
myObj=NULL;
If my program is working fine, my expectation is that myObj is being destroyed, but it appears not to be the case....
So how can I track this? and especially if somethingElse is not managed by me
Now, about the tools: it seems extremely hard to run memory tools on my mac (with 5 Meg) without rebooting the mac and starting from scratch. This is really annoying! Instruments keep crashing even before the program has started, so is there any alterante solution?
doSomethingWithMyObj:method doing anything to get a strong reference to your object? – Abizern Jan 22 at 19:17