No leaks appearing in Instruments, even though I'm sure they exist - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T07:19:35Zhttp://stackoverflow.com/feeds/question/1056073http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1056073/no-leaks-appearing-in-instruments-even-though-im-sure-they-exist2No leaks appearing in Instruments, even though I'm sure they existmac_552009-06-28T23:53:42Z2009-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#10560863Answer by eJames for No leaks appearing in Instruments, even though I'm sure they existeJames2009-06-29T00:00:08Z2009-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#10564771Answer by clemahieu for No leaks appearing in Instruments, even though I'm sure they existclemahieu2009-06-29T03:41:23Z2009-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#10567331Answer by Kendall Helmstetter Gelner for No leaks appearing in Instruments, even though I'm sure they existKendall Helmstetter Gelner2009-06-29T05:48:53Z2009-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>