Reputation: 141
I want the user to be able to see the content from the back camera but I do not want them to be given the option of taking a picture of it. Is there a function that I can call to turn this feature off?
Upvotes: 0
Views: 82
Reputation: 121
I have run into a similar situation. You will want to use AVFoundation
to construct your own interface. Your question was not nearly specific enough, so I'll give you my assumption of your situation: you are trying to hide the UIImagePicker
button so the user cannot take a picture. UIImagePicker
does not offer much in the way of customization, so AVFoundation
will be your best bet. Check out this tutorial from Jameson Quave and it should help you understand what direction to be headed in. Cheers!
Upvotes: 1