0

I have a UIImagePickerController subclass, and I would like to detect when the user presses the "retake" button.

Is that possible... what delegate method gets called? I looked at the docs but I can't find anything: http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIImagePickerControllerDelegate_Protocol/UIImagePickerControllerDelegate/UIImagePickerControllerDelegate.html

EDIT: I am accepting the answer, though this requires you build to OS 3.1

Andrew Johnson
  • 13,108
  • 13
  • 75
  • 116
  • Note -- http://stackoverflow.com/questions/17942444/uiimagepicker-cameraoverlayview-appears-on-retake-screen – Fattie Feb 19 '14 at 16:46

1 Answers1

2

You could remove the default controls with:

picker.showsCameraControls = NO;

and implement a cameraOverlayView with your own retake button, that calls the takePicture function on the UIImagePickerController again.

smokey_the_bear
  • 1,343
  • 1
  • 12
  • 23