上面这个方法是放大缩小图像使用【1.0->可选最大值】
设置聚焦距离【0.0-1.0】,1.0标识最远 0.0表示最近,表示在该距离上的位置会获得焦点,从而该位置上的物体拍的更清楚
- (IBAction)configurationDidChange:(UISlider *)sender { [self.capture.input.device lockForConfiguration:nil]; [self.capture.input.device setFocusModeLockedWithLensPosition:sender.value completionHandler:^(CMTime syncTime) { NSLog(@"设置完成%.3f",CMTimeGetSeconds(syncTime)); }]; [self.capture.input.device unlockForConfiguration]; }