Hi all,
I am using the following code for UIImagePicker,
UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
[self presentModalViewController:imagePicker animated:YES];
[imagePicker release];
When I run instrument, I see a memory leak on the first line of the code. Though I am releasing it, still its showing memory leak, does anyone have any idea where am I going wrong.
I installed the iPhoneCoreDataRecipes Application from iPhone Developers Sample Code help and it is having the same problem.