AVCapturePhotoCaptureDelegate
Methods for monitoring progress and receiving results from a photo capture output.
Declaration
protocol AVCapturePhotoCaptureDelegate : NSObjectProtocolMentioned in
Overview
You implement methods in the AVCapturePhotoCaptureDelegate protocol to be notified of progress and results when capturing photos with the AVCapturePhotoOutput class.
To capture a photo, you pass an object implementing this protocol to the capturePhoto(with:delegate:) method, along with a settings object that describes the capture to be performed. As the capture proceeds, the photo output calls several of the methods in this protocol on your delegate object, providing information about the capture’s progress and delivering the resulting photos.
Which delegate methods the photo output calls depends on the photo settings you initiate capture with. All methods in this protocol are optional at compile time, but at run time your delegate object must respond to certain methods depending on your photo settings:
If you request a still photo capture (by specifying image formats or file types), your delegate either must implement the photoOutput(_:didFinishProcessingPhoto:error:) method, or must implement methods listed in
Receiving Capture Results (Deprecated)corresponding to whether you request capture in RAW format, processed format, or both.If you request Live Photo capture (by setting the livePhotoMovieFileURL property to a non-
nilvalue), your delegate must implement the photoOutput(_:didFinishProcessingLivePhotoToMovieFileAt:duration:photoDisplayTime:resolvedSettings:error:) method.
The capture output validates these requirements when you call the capturePhoto(with:delegate:) method. If your delegate does not meet these requirements, that method raises an exception.
You must use a unique AVCapturePhotoSettings object for each capture request. When the photo output calls your delegate methods, it provides an AVCaptureResolvedPhotoSettings object whose uniqueID property matches that of the photo settings you requested capture with. When making multiple captures, use this unique ID to determine which delegate method calls correspond to which requests.
The photo output always calls each method listed in Monitoring Capture Progress exactly once for each capture request. For methods listed in Receiving Capture Results, you may receive a call more than once, or not at all, depending on your photo settings. See the description of each method for details.
Topics
Monitoring capture progress
photoOutput(_:willBeginCaptureFor:)photoOutput(_:willCapturePhotoFor:)photoOutput(_:didCapturePhotoFor:)photoOutput(_:didFinishCaptureFor:error:)
Receiving capture results
photoOutput(_:didFinishProcessingPhoto:error:)photoOutput(_:didFinishRecordingLivePhotoMovieForEventualFileAt:resolvedSettings:)photoOutput(_:didFinishProcessingLivePhotoToMovieFileAt:duration:photoDisplayTime:resolvedSettings:error:)photoOutput(_:didFinishCapturingDeferredPhotoProxy:error:)photoOutput(_:didFinishProcessingPhoto:previewPhoto:resolvedSettings:bracketSettings:error:)photoOutput(_:didFinishProcessingRawPhoto:previewPhoto:resolvedSettings:bracketSettings:error:)
See Also
Photo capture
Capturing consistent color imagesCapturing still and Live PhotosCapturing photos in RAW and Apple ProRAW formatsSupporting Continuity Camera in Your Mac AppAVCapturePhotoAVCaptureDeferredPhotoProxyAVCapturePhotoOutputAVCapturePhotoOutputReadinessCoordinatorAVCapturePhotoOutputReadinessCoordinatorDelegateAVCaptureStillImageOutput