manuelBetancurt
manuelBetancurt

Reputation: 16138

UIImagePickerController to take photo with out asking for "use" confirmation

Im building an app that takes a photo of the user, its working fine

using the nice UIImagePickerController

this is what happens when the button that calls the delegate for the UIImagePickerController gets called

  1. open camera modal view to take image
  2. tap on the camera [bottom bar] to take the pic
  3. bottom bar with: Retake (left side); Use (right side)

but my question and what i need is:

  1. open camera modal view to take image
  2. tap on the camera [bottom bar] to take the pic
  3. save that pic, "Use", with out asking confirmation

thanks a lot!

Upvotes: 4

Views: 2564

Answers (1)

XJones
XJones

Reputation: 21967

You need to provide a cameraOverlayView and set showsCameraControls = NO.

EDIT: removed ref to allowEditing.

Upvotes: 7

Related Questions