我们可以在模拟器中测试 Face ID 吗?

Can we test Face ID in simulator?

我们可以使用模拟器测试生物认证吗?

iPhone X 模拟器显示 Face ID 注册菜单,但启用后,我能做什么?

如何识别人脸进行身份验证?

模拟器只是模拟人脸识别正确和失败的结果,就像 Touch ID 一样。它不识别人脸

如你所问但启用后,我能做什么?

就像touch Id注册一样,你可以在iPhone-X上用face-Id验证东西。 但是模拟器有一些限制,比如 Appstore 等。 通过面容 ID 注册,您可以执行以下操作 -

  • 使用面容 ID 购物。
  • 使用面容 ID 登录(登录应用程序)。
  • 在 Safari 中自动填充密码。
  • 在 iTunes Store、App Store 和 iBooks Store 中。

See more at Apple

模拟器无法识别人脸,但允许您模拟匹配和不匹配的人脸,前提是您启用了 Face ID 中的 Enrolled 选项。


将以下代码添加到您的视图控制器并尝试使用 Face-ID

import LocalAuthentication

class ViewController: UIViewController {


    override func viewDidLoad() {
        super.viewDidLoad()
        localAuthentication()
    }



    func localAuthentication() -> Void {

        let laContext = LAContext()
        var error: NSError?
        let biometricsPolicy = LAPolicy.deviceOwnerAuthenticationWithBiometrics

        if (laContext.canEvaluatePolicy(biometricsPolicy, error: &error)) {

            if let laError = error {
                print("laError - \(laError)")
                return
            }

            var localizedReason = "Unlock device"
            if #available(iOS 11.0, *) {
                if (laContext.biometryType == LABiometryType.faceID) {
                    localizedReason = "Unlock using Face ID"
                    print("FaceId support")
                } else if (laContext.biometryType == LABiometryType.touchID) {
                    localizedReason = "Unlock using Touch ID"
                    print("TouchId support")
                } else {
                    print("No Biometric support")
                }
            } else {
                // Fallback on earlier versions
            }


            laContext.evaluatePolicy(biometricsPolicy, localizedReason: localizedReason, reply: { (isSuccess, error) in

                DispatchQueue.main.async(execute: {

                    if let laError = error {
                        print("laError - \(laError)")
                    } else {
                        if isSuccess {
                            print("sucess")
                        } else {
                            print("failure")
                        }
                    }

                })
            })
        }


    }
}

FaceID 身份验证将提示您首次允许对您的应用进行 FaceID 检测。


现在启用面容 ID 注册并运行您的应用程序来测试面容 ID 模拟测试。

这是匹配和非匹配人脸的模拟结果。

人脸匹配结果:


不匹配面的结果:


与@krunal 给出的相同,如果应该在第 1 之外,则为第 2。

import LocalAuthentication

class ViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()
    localAuthentication()
}

func localAuthentication() -> Void {

    let laContext = LAContext()
    var error: NSError?
    let biometricsPolicy = LAPolicy.deviceOwnerAuthenticationWithBiometrics

    if (laContext.canEvaluatePolicy(biometricsPolicy, error: &error)) {



        var localizedReason = "Unlock device"
        if #available(iOS 11.0, *) {
            if (laContext.biometryType == LABiometryType.faceID) {
                localizedReason = "Unlock using Face ID"
                print("FaceId support")
            } else if (laContext.biometryType == LABiometryType.touchID) {
                localizedReason = "Unlock using Touch ID"
                print("TouchId support")
            } else {
                print("No Biometric support")
            }
        } else {
            // Fallback on earlier versions
        }


        laContext.evaluatePolicy(biometricsPolicy, localizedReason: localizedReason, reply: { (isSuccess, error) in

            DispatchQueue.main.async(execute: {

                if let laError = error {
                    print("laError - \(laError)")
                } else {
                    if isSuccess {
                        print("sucess")
                    } else {
                        print("failure")
                    }
                }
            })
        })
    }
//This should be outside of if

 if let laError = error {
        print("laError - \(laError)")
        return
     }
 }
}

查看这篇文章。您可以在 UITests 文件夹中创建 Biometrics.m、Biometrics.h 和 bridging-header.h 文件,并更新 UI 测试目标以使用该桥接头。 https://github.com/KaneCheshire/BiometricAutomationDemo