iOSPawan
iOSPawan

Reputation: 2894

Customizing UIImagePickerController in camera mode

In camera mode tool bar shows on down of the screen with capture button. I want two more button in same tool bar on right and left position (info, photolibrary). Is it possible to achieve this. and if possible what is the chance of clean approval from Apple app store.

Looking for your suggestion......

Upvotes: 0

Views: 1663

Answers (2)

Dip Dhingani
Dip Dhingani

Reputation: 2499

You can achieve this easily without using UIImagePickerController. Try using the AVCam demo app provided by Apple. It has a UIView object called videoPreviewView which captures Camera's input and shows you the feed. You can see it in the AVCamViewController.xib file. It has simple methods to capture an image or a video if necessary. Now, you can customize a toolbar in the bottom of that view and add buttons to it and perform the functions you want on their click events. It is approved by Apple and faces no problem at all.

Upvotes: 1

EmptyStack
EmptyStack

Reputation: 51374

The short answer is NO. You can't customize UIImagePickerController (and most of the in-built controllers) until there is some API available to do that, like cameraOverlayView property of UIImagePickerController.

Upvotes: 1

Related Questions