AVCamManual/AVCamManualPhotoCaptureDelegate.h

/*
    Copyright (C) 2016 Apple Inc. All Rights Reserved.
    See LICENSE.txt for this sample’s licensing information
    
    Abstract:
    Photo capture delegate.
*/
 
@import AVFoundation;
 
@interface AVCamManualPhotoCaptureDelegate : NSObject<AVCapturePhotoCaptureDelegate>
 
- (instancetype)initWithRequestedPhotoSettings:(AVCapturePhotoSettings *)requestedPhotoSettings willCapturePhotoAnimation:(void (^)())willCapturePhotoAnimation completed:(void (^)( AVCamManualPhotoCaptureDelegate *photoCaptureDelegate ))completed;
 
@property (nonatomic, readonly) AVCapturePhotoSettings *requestedPhotoSettings;
 
@end