My camera is off, I mean
pickerCam.showsCameraControls = NO;
and I have a custom capture button that performs the capture function,
[pickerCam takePicture];
when you click this button, the delegate will be called,
- (void) imagePickerController: (UIImagePickerController *) pi didFinishPickingMediaWithInfo: (NSDictionary *) info
Instead, I need to implement the “Use” and “Restore” custom options on how to do this. thanks in advance
source share