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.
