show/hide this revision's text 3 Changed question

iPhone development - Leaks due to zombie objectspreventing leaks

Hi

When I run my app with Leaks , all the leaks that are shown are zombie objects. How and when are objects converted to zombie objects and how can I know where exactly the leak is occurring (view the Extended Details does not show for any class name so of the leaks, it takes me to a particular line in my code, but I can point out don't know what to do after that!

For instance, Leaks shows a malloc at this line

NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];

But I do not know what the place where problem is in the leak occurred)statement! Can someone please tell me how to interpret such problems and avoid leaks.

Thanks.

Edit: According to this pageRegarding the previous question I had, any deallocated NSZombieEnabled makes sure no objects instead of getting deallocated are made zombie objects if we use deallocated and this increases the NSZombieEnabled debug optionmemory usage. I am using this option, but does it really affect even So when testing on the phone itself? I used it to with Leaks, make sure I am not referencing any deallocated objects as this flag prints a message on the console if we try tosetting is removed from your app. Thought this might help someone.

show/hide this revision's text 2 added 455 characters in body

Hi

When I run my app with Leaks, all the leaks that are shown are zombie objects. How and when are objects converted to zombie objects and how can I know where exactly the leak is occurring (the Extended Details does not show any class name so I can point out the place where the leak occurred)

Thanks.

Edit: According to this page, any deallocated objects instead of getting deallocated are made zombie objects if we use the NSZombieEnabled debug option. I am using this option, but does it really affect even when testing on the phone itself? I used it to make sure I am not referencing any deallocated objects as this flag prints a message on the console if we try to.

show/hide this revision's text 1

iPhone development - Leaks due to zombie objects

Hi

When I run my app with Leaks, all the leaks that are shown are zombie objects. How and when are objects converted to zombie objects and how can I know where exactly the leak is occurring (the Extended Details does not show any class name so I can point out the place where the leak occurred)

Thanks.