我正在使用Touch ID的应用程序。我已将Touch ID集成到应用程序中以验证用户访问某些应用程序元素,并且工作正常。
LAContext *context = [[LAContext alloc] init];
NSError *error = nil;
if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
[context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"Are you the device owner?" reply:^(BOOL success, NSError *error) {
if (error) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:@"There was a problem verifying your identity."
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
return;
}
NSLog(@"%@",context);
if (success) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Success"
message:@"You are the device owner!"
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:@"You are not the device owner."
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
}
}];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:@"Your device cannot authenticate using TouchID."
delegate:nil
cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
}
现在,假设有两个像Alice和Bob这样的指纹。身份验证适用于指纹,没有任何问题。
但我需要显示哪个指纹用户已经过身份验证。
有没有办法访问它?
答案 0 :(得分:2)
你怎么知道哪个用户是哪个?他们没有名字,iOS中没有内置的身份管理基板。
您只需要相信,如果添加了指纹的人通过添加他们的指纹来信任其他人,他们就可以访问TouchID授权的所有内容。