No leaks appearing in Instruments, even though I'm sure they exist - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:19:35Z http://stackoverflow.com/feeds/question/1056073 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1056073/no-leaks-appearing-in-instruments-even-though-im-sure-they-exist 2 No leaks appearing in Instruments, even though I'm sure they exist mac_55 2009-06-28T23:53:42Z 2009-06-29T05:48:53Z <p>Hi,</p> <p>I'm checking for leaks in Instruments, and I've set to check every second, but no leaks are appearing. </p> <p>I'm sure there must be some in my app, is there anything which could stop these from appearing? Is there a good way I can create a leak so that I can test if leaks do show up in Instruments?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1056073/no-leaks-appearing-in-instruments-even-though-im-sure-they-exist/1056086#1056086 3 Answer by eJames for No leaks appearing in Instruments, even though I'm sure they exist eJames 2009-06-29T00:00:08Z 2009-06-29T00:00:08Z <p>Creating a leak is easy:</p> <pre><code>id someObject = [[NSObject alloc] init]; someObject = nil; </code></pre> <p>Drop some code like that into your app, and you should definitely see a leak show up in Instruments.</p> http://stackoverflow.com/questions/1056073/no-leaks-appearing-in-instruments-even-though-im-sure-they-exist/1056477#1056477 1 Answer by clemahieu for No leaks appearing in Instruments, even though I'm sure they exist clemahieu 2009-06-29T03:41:23Z 2009-06-29T03:41:23Z <p>You're only going to find leaks with a tool if an object is allocated but no longer referenced. Another type of "leak" is to hold a reference to something that you didn't intend to. This typically happens with a collection like a hash table or a dictionary where key/value pairs get left in the collection that the programmer has forgotten about.</p> http://stackoverflow.com/questions/1056073/no-leaks-appearing-in-instruments-even-though-im-sure-they-exist/1056733#1056733 1 Answer by Kendall Helmstetter Gelner for No leaks appearing in Instruments, even though I'm sure they exist Kendall Helmstetter Gelner 2009-06-29T05:48:53Z 2009-06-29T05:48:53Z <p>I'm pretty sure as clemahieu postulated, what you are really seeing are over-retained objects - you think you have freed them but they still are being retained.</p> <p>One quick sanity check for this is to set breakpoints in dealloc and see if the classes you expect to be freed really are.</p> <p>You can also use the memory tracking Instrument (not leaks) to see what memory is still around - just make sure to select the "created and still living" option to check out just what what objects are still around.</p>