检测iPhone的

时间:2017-10-08 16:40:07

标签: ios swift ios11 touch-id face-id

我尝试像这样检测iPhone的生物识别功能:

let authenticationContext = LAContext()

switch authenticationContext.biometryType 
{ case LABiometryType.typeFaceID:
  print("faceID")
  case LABiometryType.typeTouchID:
  print("touchID")
  case LABiometryType.none:
  print("no biometric")
}

在Xcode 9中,我进入了iPhone-X和iPhone 8模拟器“LABiometryType.none”而不是预期的LABiometryType.typeFaceID和LABiometryType.typeTouchID

这是检测Face-ID的正确方法吗?

(这不是关于检测iPhone X(未来的iPhone也可能支持Face-ID)

0 个答案:

没有答案