I was able to capture video frames from the camera using AVCaptureSession according to http://developer.apple.com/iphone/library/qa/qa2010/qa1702.html. However, it seems that AVCaptureScreen captures frames from the camera without showing the camera stream on the screen. I would like to also show camera stream just like in UIImagePicker so that the user knows that the camera is being turned on and sees what the camera is pointed at. Any help or pointer would be appreciated!

link|improve this question
feedback

1 Answer

up vote 11 down vote accepted

AVCaptureVideoPreviewLayer is exactly what you're looking for.

The code fragment Apple uses to demonstrate how to use it is:

AVCaptureSession *captureSession = <#Get a capture session#>;
AVCaptureVideoPreviewLayer *previewLayer = [AVCaptureVideoPreviewLayer layerWithSession:captureSession];
UIView *aView = <#The view in which to present the layer#>;
previewLayer.frame = aView.bounds; // Assume you want the preview layer to fill the view.
[aView.layer addSublayer:previewLayer];
link|improve this answer
This works. Thanks a lot! – Peter Aug 2 '10 at 6:47
thanks, i've been looking for a way to display the images, finally a correct and working answer :) – aryaxt Aug 23 '10 at 17:43
feedback

Your Answer

 
or
required, but never shown

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