How to remove all UI elements from a camera ? I need to get the minimalistic display of camera as in the second screenshot.
How to get a display of camera without UI elements?
1.3k Views Asked by Denis At
2
There are 2 best solutions below
0

One way to do it is to use UIImagePickerController
, which is probably the easiest way to take a photo with the camera. That class has a showsCameraControls
property that you can set to NO
if you don't want the usual set of controls. If you do that, though, you'll have to set the cameraOverlayView
property to a view that you supply. Normally, that view would contain your own set of camera controls, but you could instead pass in an empty view. You'll want to set up the view so that it responds to the user's gestures, so that they can still take the photo (with a tap, perhaps) or dismiss the camera without taking a photo (you could use a swipe for that).
In your
UIViewController
you set it up like this: