iPhone - To perform a real-time or offline capture, you instantiate an AVCaptureSession object and add appropriate inputs (such as AVCaptureDeviceInput), and outputs (such as AVCaptureMovieFileOutput).
You use an AVCaptureSession object to coordinate the flow of data from AV input devices to outputs.
To perform a real-time or offline capture, you instantiate an AVCaptureSession
object and add appropriate inputs (such as AVCaptureDeviceInput), and outputs (such as AVCaptureMovieFileOutput).
The AVFoundation Programming Guide explains how to use AVCapureSession
.