Reputation: 15639
How to customize the controls over the camera in iphone using programming? As there are two modes in camera, one is for taking photo and second in for recording movie, simply I want a view that does not have any recording control, and have some else option in that How can I do that? Help!
Upvotes: 0
Views: 2016
Reputation: 26683
picker.showsCameraControls = NO;
picker.cameraOverlayView = someView;
Where someView is your custom UIView in which you design your own camera UI. UIImagePickerController class reference is a good place to get you started.
Upvotes: 1