Bala
Bala

Reputation: 39

How do you hide the camera controls within a UIImagePickerView in an iPhone app?

I have a UIImagePickerView in my iPhone app, and would like to hide the camera controls. How can I do this?

Upvotes: 0

Views: 1131

Answers (1)

BoltClock
BoltClock

Reputation: 723538

There's a showsCameraControls property that you can disable:

myImagePickerController.showsCameraControls = NO;

Upvotes: 2

Related Questions