<!--
{
  "availability" : [
    "iOS: 3.1.0 -",
    "iPadOS: 3.1.0 -",
    "macCatalyst: 13.1.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "UIKit",
  "identifier" : "/documentation/UIKit/UIImagePickerController/showsCameraControls",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "UIKit"
    ],
    "preciseIdentifier" : "c:objc(cs)UIImagePickerController(py)showsCameraControls"
  },
  "title" : "showsCameraControls"
}
-->

# showsCameraControls

A Boolean value that indicates whether the image picker displays the default camera controls.

```
var showsCameraControls: Bool { get set }
```

## Discussion

The default value of this property is <doc://com.apple.documentation/documentation/Swift/true>, which specifies that the default camera controls are visible in the picker. Set it to <doc://com.apple.documentation/documentation/Swift/false> to hide the default controls if you want to instead provide a custom overlay view using the [`cameraOverlayView`](/documentation/UIKit/UIImagePickerController/cameraOverlayView) property.

> Note:
> In iOS 3.1.3 and earlier, hiding the default camera controls limits you to taking still pictures only, regardless of whether movie capture is available on the device.

If you set this property to <doc://com.apple.documentation/documentation/Swift/false> and provide your own custom controls, you can take multiple pictures before dismissing the image picker interface. However, if you set this property to <doc://com.apple.documentation/documentation/Swift/true>, your delegate must dismiss the image picker interface after the user takes one picture or cancels the operation.

You can access this property only when the source type of the image picker is set to [`UIImagePickerController.SourceType.camera`](/documentation/UIKit/UIImagePickerController/SourceType-swift.enum/camera). Attempting to access this property for other source types results in the throwing of an <doc://com.apple.documentation/documentation/Foundation/NSExceptionName/invalidArgumentException> exception. Depending on the value you assign to the [`mediaTypes`](/documentation/UIKit/UIImagePickerController/mediaTypes) property, the default controls display the still camera or movie camera interface, or a selection control that lets the user choose the picker interface.

## See Also

[`takePicture()`](/documentation/UIKit/UIImagePickerController/takePicture())

Captures a still image using the camera.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)