首先本文的参考地址:http://www.jianshu.com/p/8b28892bae5a
但在iOS 10中类AVCaptureStillImageOutput可用AVCapturePhotoOutput代替。
类AVCapturePhotoOutput中有一个方法:
- (void)capturePhotoWithSettings:(AVCapturePhotoSettings*)settings delegate:(id)delegate;
该方法通过提供代理的方式去捕获照片。
1、其中settings是你需要配置AVCapturePhotoSettings对象
2、该方法验证你的设置并且强制你准守其中的规则以确保确定性的行为。如果违背了任何一个规则,都会导致崩溃。
3、其中最重要的一条是:如果settings.livePhotoMovieURL非零,你必须响应代理方法:captureOutput:didFinishProcessingLivePhotoToMovieFileAtURL:duration:photoDisplayTime:resolvedSettings:error: