Reputation: 39
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
Reputation: 723538
There's a showsCameraControls
property that you can disable:
myImagePickerController.showsCameraControls = NO;
Upvotes: 2