Please help me with my question.
Is there any way to get image from camera without UIImagePickerController?
I need to render current image(from camera) into image on my view and update it by timer.
May be AVCaptureStillImageOutput? I didn’t find any examples.
Any ideas?
Yes, you can do it easily using
AVCamCaptureManagerandAVCamRecorderclasses. Apple has a demo program build on its developer site here. It is namedAVCam. In simple words what it does is when you click to open the camera, it calls the classes and methods which are responsible for opening the iPhone’s camera and record video or capture audio. It calls the same classes which are called byUIImagePickerController.I hope it helps.