iPhone code leaks and I don't know why - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T22:57:35Zhttp://stackoverflow.com/feeds/question/1039244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1039244/iphone-code-leaks-and-i-dont-know-why1iPhone code leaks and I don't know whyStefan2009-06-24T15:53:27Z2009-06-24T16:12:44Z
<p>Hi,</p>
<p>this is a well known snippet, how to select a picture from the iPhone photo library:</p>
<pre><code>- (IBAction)selectExistingPicture {
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentModalViewController:picker animated:YES];
[picker release];
}
}
</code></pre>
<p>Here you can see a screenshot of Instruments (<a href="http://img.skitch.com/20090624-rtqp2mgsnyynkgb97c9e8d2g9c.jpg" rel="nofollow">fullscreen</a>).</p>
<p><img src="http://img.skitch.com/20090624-rtqp2mgsnyynkgb97c9e8d2g9c.jpg" alt="alt text" /></p>
<p>Why does it leak? I don't understand it, because picker is released properly, I think.</p>
http://stackoverflow.com/questions/1039244/iphone-code-leaks-and-i-dont-know-why/1039281#10392814Answer by tmh for iPhone code leaks and I don't know whytmh2009-06-24T15:58:49Z2009-06-24T15:58:49Z<p>You are presenting picker but then losing the pointer to it when you leave the method. As it is allocated memory, that is your leak. Try:</p>
<pre><code>UIImagePickerController *picker = [[[UIImagePickerController alloc] init] autorelease];
</code></pre>
http://stackoverflow.com/questions/1039244/iphone-code-leaks-and-i-dont-know-why/1039283#10392832Answer by mharper for iPhone code leaks and I don't know whymharper2009-06-24T15:58:58Z2009-06-24T15:58:58Z<p>Shouldn't you be doing an autorelease on the UIImagePickerController?</p>
<p>UIImagePickerController *picker = [[[UIImagePickerController alloc] init] autorelease];</p>
http://stackoverflow.com/questions/1039244/iphone-code-leaks-and-i-dont-know-why/1039369#10393694Answer by rpetrich for iPhone code leaks and I don't know whyrpetrich2009-06-24T16:12:44Z2009-06-24T16:12:44Z<p>The <code>UIImagePickerController</code> is <a href="http://blog.airsource.co.uk/index.php/2008/11/12/memory-usage-in-uiimagepickercontroller/" rel="nofollow">known to leak</a>. If you are going to use it more than once it's recommended that you reuse a single instance</p>