lacontext.biometrytype总是返回labiometrytypetouchid



我已经在项目中使用了TouchID,现在我尝试使用faceID进行身份验证,并且正在使用以下代码。

LAContext *myContext = [[LAContext alloc] init];
NSError *authError = nil;
    if (![myContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&authError])
    {
        NSLog(@"0001 , EVT, %@, %@, %@",[[self class] description], NSStringFromSelector(_cmd), [authError localizedDescription]);
        return NO;
    }
    
    if (@available(iOS 11.0, *))
    {
        if (myContext.biometryType == LABiometryTypeFaceID)
        {
            NSLog(@"0002 , EVT, %@, %@, FaceID Suppoted Device",[[self class] description],NSStringFromSelector(_cmd));
        }
		if (myContext.biometryType == LABiometryTypeTouchID)
        {
            NSLog(@"0002 , EVT, %@, %@, Touched Suppoted Device",[[self class] description],NSStringFromSelector(_cmd));
        }
    }

myContext.biometrytype始终返回Labiometrytypetouchid(1),但是设备IAM使用的IAM IS是iPad 11英寸,带有iOS 12.1.4(只有faceid no touchid)。

但是,如果我运行以下评估库:faceID UI会提示。但是即使在那之后,我也得到mycontext.biometrytype返回labiometrytypetouchid(1),,,,知道为什么这会返回labiometrytypetouchid(1)而不是labiometrytypefaceid(2)?

[myContext evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
                  localizedReason:myLocalizedReasonString
                            reply:

注意 - 这在iPhonex上与iOS 12.1.4完美地工作,但iPad中的dosent工作11英寸iOS 12.1.4奇怪...

最终从苹果那里得到以下答案。

似乎您已经针对iOS 11.X SDK构建了应用程序。iOS 12之前,iPad禁用了FACE ID功能,这就是为什么将其视为触摸ID的原因。

请确保使用最新的Xcode构建该应用程序,即iOS 12.x SDK

相关内容

  • 没有找到相关文章

最新更新