I use UIImagePickerController in a non-modal setup, for example:
UIImagePickerController *_imagePickerVC =
This works, and I can take pictures, but I canβt click on the preview area to focus the camera on that spot. I tried to fix this by adding one or both of these two lines:
_imagePickerVC.showsCameraControls = NO; _imagePickerVC.view.userInteractionEnabled = YES;
but no luck. When I show the camera controls, I have a flash mode button and a camera select button, but these buttons also cannot be displayed. Is it possible to press to focus the work in my situation?
source share