0

Is there a way to find out the height of the camera view only(not the picker view)? I need to know so I can centre the cross hairs on my overlay view vertically - screenshot below

enter image description here

Simon
  • 384
  • 4
  • 22

1 Answers1

0

As an option - you can create custom camera overlay view with all custom controls on positions you want and then set:

imagePickerController.cameraOverlayView = yourOverlayView;
imagePickerController.showsCameraControls = NO;

Source and more info: in this SO question

Community
  • 1
  • 1
keyv
  • 2,430
  • 1
  • 18
  • 15