gpt4 book ai didi

ios - 如何检查用户是否允许我的应用程序在 iOS 6 和 iOS 7 中使用后置摄像头

转载 作者:行者123 更新时间:2023-11-29 13:00:03 24 4
gpt4 key购买 nike

我知道 iOS7 有新的 AVCaptureDevice api : authorizationStatusForMediaType: 可以知道后置摄像头的权限状态,但是在 iOS 6 中,如何知道?

最佳答案

最后,我找到了一种在 iOS 6 和 iOS 7 中都可以工作的方法,这是我的代码:

- (BOOL)backCameraIsReady
{
AVCaptureDevice *inputDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
AVCaptureDeviceInput *captureInput = [AVCaptureDeviceInput deviceInputWithDevice:inputDevice error:nil];
if (!captureInput) {
return NO;
} else {
return YES;
}
}

关于ios - 如何检查用户是否允许我的应用程序在 iOS 6 和 iOS 7 中使用后置摄像头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20000777/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com