0

As explained here I would need to modify a little the actions/behaviour of the buttons listed in titled. I would like to avoid to build a new image picker overlay as some posts suggest. I just need to add a call to one of my methods into default actions. Isn't there a simple way to do this?

Community
  • 1
  • 1
SagittariusA
  • 5,289
  • 15
  • 73
  • 127

1 Answers1

1

You can't.

As explained in the UIImagePickerController class reference:

The UIImagePickerController class manages customizable, system-supplied user interfaces for taking pictures and movies on supported devices, and for choosing saved images and movies for use in your app. An image picker controller manages user interactions and delivers the results of those interactions to a delegate object.

And then:

To perform fully-customized image or movie capture, instead use the AV Foundation framework as described in Media Capture and Access to Camera.

Marcos Crispino
  • 8,018
  • 5
  • 41
  • 59
  • Thank you...avevo iniziato a temere che fosse così. What about this tutorial instead: http://makeapppie.com/tag/cameraoverlayview/? maybe it could be easier than AV Foundation about which I know nothing :( – SagittariusA Jan 13 '16 at 16:58