Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create an iphone app that if you shoot using the camera it automatically save and shoot again until you click Done.

is that possible?

share|improve this question
ya sure it is .... – Harsh May 25 '11 at 7:29
yes, that is possible – Manni May 25 '11 at 7:37
Do you have any sources on that? Coz I can't figure it out and Im a newbie on this technology. Plz thanks :) – April Kwong May 25 '11 at 8:13

1 Answer

Look at the takePicture method of UIImagePickerController. From the documentation:

Use this method in conjunction with a custom overlay view to initiate the programmatic capture of a still image. This supports taking more than one picture without leaving the interface, but requires that you hide the default image picker controls.

Since you have to have the default controls hidden, you'll also want to look at cameraOverlayView, which lets you provide your own controls to use instead. That's where you can put your start and done buttons.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.