标签:
iOS 8 SDK向开发者公开了Touch ID指纹识别功能,允许App对用户身份进行本地验证。
只需要2步即可使用指纹验证身份:
1. 检查Touch ID是否可用。
2. 获得指纹验证结果。
1 LAContext *myContext = [[LAContext alloc] init]; 2 if ([myContext canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:nil]) { 3 [myContext evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"请验证指纹" reply:^(BOOL success, NSError * _Nullable error) { 4 if (success) { 5 NSLog(@"验证通过!"); 6 }else{ 7 NSLog(@"验证失败!"); 8 } 9 }]; 10 }else{ 11 NSLog(@"无法使用指纹验证!"); 12 }
标签:
原文地址:http://www.cnblogs.com/jh2015/p/4997419.html