指纹识别
2015-12-31 本文已影响68人
gpr
头文件
#import <LocalAuthentication/LocalAuthentication.h>
示例
// 是在 iOS 8.0 之后才推出的
NSLog(@"%@", [UIDevice currentDevice].systemVersion);
if ([UIDevice currentDevice].systemVersion.floatValue < 8.0) {
NSLog(@"不支持");
return;
}
LAContext *ctx = [[LAContext alloc] init];
// 判断设备是否支持指纹识别
if ([ctx canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:NULL]) {
NSLog(@"支持");
// 输入指纹,异步
// 提示:指纹识别只是判断当前用户是否是手机的主人!程序原本的逻辑不会受到任何的干扰!
[ctx evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"指纹登录" reply:^(BOOL success, NSError *error) {
NSLog(@"%d %@", success, error);
if (success) {
// 直接登录就可以
if (self.nameText.text.length > 0 && self.pwdText.text.length > 0) {
[self postLogin];
}
}
}];
NSLog(@"come here");
} else {
NSLog(@"不支持");
}