iPhone development - preventing leaks - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:28:07Z http://stackoverflow.com/feeds/question/475539 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/475539/iphone-development-preventing-leaks 4 iPhone development - preventing leaks lostInTransit 2009-01-24T05:02:50Z 2009-01-26T14:24:54Z <p>Hi</p> <p>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!</p> <p>For instance, Leaks shows a malloc at this line</p> <pre><code>NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&amp;response error:&amp;error]; </code></pre> <p>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.</p> <p>Thanks.</p> <p><i>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.</i></p> http://stackoverflow.com/questions/475539/iphone-development-preventing-leaks/475603#475603 1 Answer by Colin Wheeler for iPhone development - preventing leaks Colin Wheeler 2009-01-24T06:04:24Z 2009-01-24T06:04:24Z <p>The Extended Detail pane will give you stack traces showing you the stack at the leak. Generally a good place to start is to look at your methods &amp; the last method of your code in the stack and see what you are doing memory wise there, it sounds like you could be over retaining an object. Start there for now</p> http://stackoverflow.com/questions/475539/iphone-development-preventing-leaks/475815#475815 1 Answer by Fredrik Jansson for iPhone development - preventing leaks Fredrik Jansson 2009-01-24T09:58:33Z 2009-01-24T09:58:33Z <p>Do you free the response and error objects after the call? Those are possibly allocated in the call.</p> http://stackoverflow.com/questions/475539/iphone-development-preventing-leaks/476525#476525 1 Answer by Eric Albert for iPhone development - preventing leaks Eric Albert 2009-01-24T19:28:34Z 2009-01-24T19:28:34Z <p>A leak in the method you mention above was supposed to be fixed for the iPhone OS 2.2 release. Which version of the iPhone OS are you using?</p> http://stackoverflow.com/questions/475539/iphone-development-preventing-leaks/479943#479943 3 Answer by lostInTransit for iPhone development - preventing leaks lostInTransit 2009-01-26T14:24:54Z 2009-01-26T14:24:54Z <p>Found the answer. Fredrik's response got me thinking. I was creating an instance of NSURLResponse and NSError which I was then passing to the sendSynchronousRequest method. According to the memory management document of the iPhone, this should not be done. We just need to pass a reference to the NSURLResponse and NSError objects to the method and the method takes care of creating and releasing the objects.</p> <p>Hope that helps someone else. Thanks a lot for the answers everyone.</p>