vote up 1 vote down star

Hi,

this is a well known snippet, how to select a picture from the iPhone photo library:

- (IBAction)selectExistingPicture {
  if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {

	UIImagePickerController *picker = [[UIImagePickerController alloc] init];
	picker.delegate = self;
	picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

	[self presentModalViewController:picker animated:YES];
            [picker release];

  }
}

Here you can see a screenshot of Instruments (fullscreen).

alt text

Why does it leak? I don't understand it, because picker is released properly, I think.

flag

66% accept rate

3 Answers

vote up 4 vote down check

The UIImagePickerController is known to leak. If you are going to use it more than once it's recommended that you reuse a single instance

link|flag
1  
Ok, thank you. Strange that Apple rejects apps due to leaks, but produces leaks themselves. – Stefan Jun 24 at 16:15
vote up 4 vote down

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:

UIImagePickerController *picker = [[[UIImagePickerController alloc] init] autorelease];
link|flag
I tried this before: same issue. Sorry, I forgot: [picker release] in my post. Edited it. – Stefan Jun 24 at 16:05
vote up 2 vote down

Shouldn't you be doing an autorelease on the UIImagePickerController?

UIImagePickerController *picker = [[[UIImagePickerController alloc] init] autorelease];

link|flag
Same answer as above ;-) I tried this before: same issue. Sorry, I forgot: [picker release] in my post. Edited it. – Stefan Jun 24 at 16:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.