Re: need help to debug... (windows debuging)

2006-04-11 Thread Benhur Stein
You could put a breakpoint in [NSZombie forwardInvocation:] or in GSLogZombie, and see in the backtrace where/who is calling it (the deallocated object), and which object it was. Good luck, Benhur On 4/11/06, Lloyd Dupont [EMAIL PROTECTED] wrote: Using NSZombies I understood that my objects are

need help to debug... (windows debuging)

2006-04-10 Thread Lloyd Dupont
Using NSZombies I understood that my objects are all properly accounted for. However it seems that some released/deallocated object are called. probably due to an instance variable not being retained/released. Such as NSNotification, parent in children-parent (cyclical) relationship, etc Is