在我的应用程序中,我使用 card.io 来扫描信用卡。它在 iOS 9 中运行良好。在 iOS 10 中,应用程序崩溃了,我在 xcode 8 beta 2 控制台中找不到崩溃日志,因为它抛出了很多垃圾消息。
然后我检查了隐私->设置以查看我的应用程序是否禁用了相机,但我的应用程序未在该部分中列出。似乎 iOS 10 没有授予我的应用程序使用相机的权限。
我使用以下代码请求权限:
-(BOOL)checkCameraPermissions{
AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo];
if(authStatus == AVAuthorizationStatusAuthorized)
{
// start card-io
return YES;
}
else if(authStatus == AVAuthorizationStatusNotDetermined)
{
[AVCaptureDevice requestAccessForMediaType:AVMediaTypeVideo completionHandler:^(BOOL granted)
{
if(granted)
{
//Start card-io
[self testIsNewCard];
}
}];
}
else if (authStatus == AVAuthorizationStatusRestricted)
{
//Alert
// Alert camera denied
UIAlertController *aCon=[UIAlertController alertControllerWithTitle:@"Camera denied" message:@"Camera cannot be used" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *ok =[UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
[aCon dismissViewControllerAnimated:YES completion:nil];
}];
[aCon addAction:ok];
[self presentViewController:aCon animated:YES completion:nil];
return NO;
}
return NO;
}
当我运行此代码时,authStatus 返回为AVAuthorizationStatusNotDetermined
并且应用程序在进入块后立即崩溃requestAccessForMediaType:AVMediaTypeVideo
控制台中显示了很多垃圾日志,我不知道找到崩溃消息。
编辑:我找到了一个选项来禁用 xcode 8 中所有不必要的日志。答案张贴在这里。但是即使禁用了回溯调试,xcode 仍然没有显示任何崩溃日志。
我的 xcode8 只显示此消息,应用程序刚刚退出:
App[1124:226447] [access] <private>
我也尝试重置位置和隐私,但在尝试请求媒体访问时应用程序仍然崩溃。
任何想法为什么会发生这种情况?