iPhone code leaks and I don't know why - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T22:57:35Z http://stackoverflow.com/feeds/question/1039244 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1039244/iphone-code-leaks-and-i-dont-know-why 1 iPhone code leaks and I don't know why Stefan 2009-06-24T15:53:27Z 2009-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#1039281 4 Answer by tmh for iPhone code leaks and I don't know why tmh 2009-06-24T15:58:49Z 2009-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#1039283 2 Answer by mharper for iPhone code leaks and I don't know why mharper 2009-06-24T15:58:58Z 2009-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#1039369 4 Answer by rpetrich for iPhone code leaks and I don't know why rpetrich 2009-06-24T16:12:44Z 2009-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>