show/hide this revision's text 2 added [picker release]; (I've forgotten this before); edited title

iPhone code leaks , and I don't know why

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.

show/hide this revision's text 1

iPhone code leaks, and I don't know why

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];

  }
}

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.