我尝试像这样检测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)