至于使用TouchID区分用户

时间:2015-01-13 17:24:58

标签: xcode touch-id

我想知道我是否可以区分哪个用户通知指纹,以及Apple获得的信息!

 [self evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
         localizedReason:@"" reply:^(BOOL success, NSError *authenticationError){
        if (success) {
              //Code Here
        else {
              //Code Here 
         }
    }]; 


1 个答案:

答案 0 :(得分:4)

这是不可能的。

SDK仅允许访问验证成功或失败状态,仅此而已。

https://developer.apple.com/library/prerelease/ios/documentation/LocalAuthentication/Reference/LocalAuthentication_Framework/index.html

背后的原因是指纹存储在A7 / 8芯片的安全位置,甚至iOS内核都无法访问,只能访问这个非常高的成功/失败信息。