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

时间:2017-11-07 13:21:33

标签: ios simulator biometrics iphone-x face-id

我们可以使用模拟器测试生物识别身份验证吗?

iPhone X Simulator显示面部识别注册菜单,但启用后,我该怎么办?

如何识别面部进行身份验证?

iPhone X Simulator - Face ID settings

5 个答案:

答案 0 :(得分:19)

模拟器无法识别脸部,但如果您从Enrolled启用了Face ID选项,则可以模拟匹配和不匹配的脸部。

将以下代码添加到视图控制器并尝试使用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检测。

enter image description here

现在启用Face ID注册并运行您的应用以测试Face ID模拟测试。

以下是匹配和不匹配面的模拟结果。

匹配面孔的结果:

enter image description here


不匹配面孔的结果:

enter image description here

答案 1 :(得分:7)

模拟器只是模拟正确和失败的面部识别的结果,就像使用Touch ID一样。它无法识别面孔

答案 2 :(得分:1)

当您询问但在启用之后,我该怎么办?

就像触摸ID注册一样,您可以在iPhone-X上使用face-Id验证内容。 然而,模拟器有一些限制,如Appstore等。 通过面部识别注册,您可以执行以下操作 -

  • 使用面部识别码进行购买。
  • 使用面部识别功能登录(登录应用)。
  • 在Safari中自动填写密码。
  • 在iTunes Store,App Store和iBooks Store中。

See more at Apple

答案 3 :(得分:0)

与@krunal相同,如果应该在1st之外,则为第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
     }
 }
}

答案 4 :(得分:0)

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