tags:

views:

117

answers:

1

Can we change the shutter button icon on a Camera View?

+1  A: 

Yes, it is possible. You can show your own view overlap the default view using these 2 methods. Remember to do picker.showCameraControls = NO;

@property(nonatomic, retain) UIView *cameraOverlayView

@property(nonatomic) BOOL showsCameraControls

More here

vodkhang