Hi
When I run my app with Leaks and view the Extended Details for any of the leaks, it takes me to a particular line in my code, but I 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 problem is in the statement! Can someone please tell me how to interpret such problems and avoid leaks.
Thanks.
Edit: Regarding the previous question I had, NSZombieEnabled makes sure no objects are deallocated and this increases the memory usage. So when testing with Leaks, make sure this setting is removed from your app. Thought this might help someone.