Hi,
Lets say I have a controller class A which implements UIImagePickerControllerDelegate.
within A , I implement the delegate like this :
-(void) imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo
{
[self dismissModalViewControllerAnimated:YES];
}
Who will get dismissed here ? the imagePickerController or A ? please explain why...