我正在尝试用曝光点锁定曝光,但在我的设备中尝试时它似乎不起作用。虽然当你长按屏幕锁定曝光和焦点时相机应用程序也可以工作,但是当你用我自己的应用程序尝试使用以下代码行时,它不起作用。我错过了配置上的某些内容吗?
if ([_captureInput.device isExposureModeSupported:AVCaptureExposureModeLocked] && [_captureInput.device lockForConfiguration:NULL] && [_captureInput.device isExposurePointOfInterestSupported])
{
[_captureInput.device setExposurePointOfInterest:pointOfInterest];
[_captureInput.device setExposureMode:AVCaptureExposureModeLocked];
[_captureInput.device unlockForConfiguration];
}