一直想实现一下指纹解锁,苦于一直没时间,最近终于闲了下来所以翻了翻文档看了看demo,完成了这篇教程。本功能实现起来是很简单的,因为苹果都已经帮我们封装好了,只需要实现几个方法就可以了。
1
|
LocalAuthentication/LocalAuthentication.h
|
这个方法是判断设备是否支持TouchID的。
1
2
|
- ( BOOL )canEvaluatePolicy:(LAPolicy)policy error:(NSError * __autoreleasing *)
error __attribute__ ((swift_error(none)));
|
这个是用来验证TouchID的,会有弹出框出来。
1
2
3
|
- ( void )evaluatePolicy:(LAPolicy)policy
localizedReason:(NSString *)localizedReason
reply:( void (^)( BOOL success, NSError * __nullable error))reply;
|
LAContext
对象 localizedFallbackTitle
:用于设置左边的按钮的名称,默认是Enter Password
.
localizedReason
:用于设置提示语,表示为什么要使用Touch ID
1
2
3
|
//创建LAContext
LAContext *context = [LAContext new ]; //这个属性是设置指纹输入失败之后的弹出框的选项
context.localizedFallbackTitle = @ "没有忘记密码" ;
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
NSError *error = nil;
if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
error:&error]) {
NSLog(@ "支持指纹识别" );
[context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
localizedReason:@ "指纹解锁" reply:^( BOOL success, NSError * _Nullable error) {
if (success) {
NSLog(@ "验证成功 刷新主界面" );
} else {
NSLog(@ "%@" ,error.localizedDescription);
switch (error.code) {
case LAErrorSystemCancel:
{
NSLog(@ "系统取消授权,如其他APP切入" );
break ;
}
case LAErrorUserCancel:
{
NSLog(@ "用户取消验证Touch ID" );
break ;
}
case LAErrorAuthenticationFailed:
{
NSLog(@ "授权失败" );
break ;
}
case LAErrorPasscodeNotSet:
{
NSLog(@ "系统未设置密码" );
break ;
}
case LAErrorTouchIDNotAvailable:
{
NSLog(@ "设备Touch ID不可用,例如未打开" );
break ;
}
case LAErrorTouchIDNotEnrolled:
{
NSLog(@ "设备Touch ID不可用,用户未录入" );
break ;
}
case LAErrorUserFallback:
{
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
NSLog(@ "用户选择输入密码,切换主线程处理" );
}];
break ;
}
default :
{
[[NSOperationQueue mainQueue] addOperationWithBlock:^{
NSLog(@ "其他情况,切换主线程处理" );
}];
break ;
}
}
}
}];
} else {
NSLog(@ "不支持指纹识别" );
switch (error.code) {
case LAErrorTouchIDNotEnrolled:
{
NSLog(@ "TouchID is not enrolled" );
break ;
}
case LAErrorPasscodeNotSet:
{
NSLog(@ "A passcode has not been set" );
break ;
}
default :
{
NSLog(@ "TouchID not available" );
break ;
}
}
NSLog(@ "%@" ,error.localizedDescription);
}
|
做到这里几乎就算完成,使用确实很简单,因为苹果都已经给我们做好一切,对我们开发者来说就很轻松了。教程写的很简陋,希望大家多多包涵
- (void)authenticateButtonTapped{ LAContext *context = [[LAContext alloc] init]; context.localizedFallbackTitle = @"输入密码"; NSError *error = nil; if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) { [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"您是这设备的所有者吗?" reply:^(BOOL success, NSError *error) { if (success) { dispatch_async (dispatch_get_main_queue(), ^{ //在主线程更新 UI,不然会卡主 UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Success" message:@"你是设备主人。" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil]; [alert show]; }); }else{ /* // 用户未提供有效证书,(3次机会失败 --身份验证失败)。 LAErrorAuthenticationFailed = kLAErrorAuthenticationFailed, // 认证被取消,(用户点击取消按钮)。 LAErrorUserCancel = kLAErrorUserCancel, // 认证被取消,用户点击回退按钮(输入密码)。 LAErrorUserFallback = kLAErrorUserFallback, // 身份验证被系统取消,(比如另一个应用程序去前台,切换到其他 APP)。 LAErrorSystemCancel = kLAErrorSystemCancel, // 身份验证无法启动,因为密码在设备上没有设置。 LAErrorPasscodeNotSet = kLAErrorPasscodeNotSet, // 身份验证无法启动,因为触摸ID在设备上不可用。 LAErrorTouchIDNotAvailable = kLAErrorTouchIDNotAvailable, // 身份验证无法启动,因为没有登记的手指触摸ID。 没有设置指纹密码时。 LAErrorTouchIDNotEnrolled = kLAErrorTouchIDNotEnrolled, **/ switch (error.code) { case LAErrorAuthenticationFailed: NSLog(@"身份验证失败。"); break; case LAErrorUserCancel: NSLog(@"用户点击取消按钮。"); break; case LAErrorUserFallback: { NSLog(@"用户点击输入密码。"); [[NSOperationQueue mainQueue] addOperationWithBlock:^{ //用户选择输入密码,切换主线程处理 }]; break; } case LAErrorSystemCancel: NSLog(@"另一个应用程序去前台"); break; case LAErrorPasscodeNotSet: NSLog(@"密码在设备上没有设置"); break; case LAErrorTouchIDNotAvailable: NSLog(@"触摸ID在设备上不可用"); break; case LAErrorTouchIDNotEnrolled: NSLog(@"没有登记的手指触摸ID。"); break; default: { NSLog(@"Touch ID没配置"); [[NSOperationQueue mainQueue] addOperationWithBlock:^{ //其他情况,切换主线程处理 }]; break; } } } }]; } else { dispatch_async (dispatch_get_main_queue(), ^{ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"错误提示" message:@"您的设备没有触摸ID." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil]; [alert show]; }); } }
其中:
(1)localizedFallbackTitle:用于设置左边的按钮的名称,默认是输入密码。
(2)localizedReason:用于设置提示语,表示为什么要使用Touch ID,如代码中@"您是这设备的所有者吗?"。
首先判断系统版本,iOS8
及以上版本执行-(void)
authenticateButtonTapped方法,方法自动判断设备是否支持和开启Touch ID
。
iOS 9加入了三种新的错误类型。
/// Authentication was not successful, because there were too many failed Touch ID attempts and /// Touch ID is now locked. Passcode is required to unlock Touch ID, e.g. evaluating /// LAPolicyDeviceOwnerAuthenticationWithBiometrics will ask for passcode as a prerequisite. LAErrorTouchIDLockout NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorTouchIDLockout, /// Authentication was canceled by application (e.g. invalidate was called while /// authentication was in progress). LAErrorAppCancel NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorAppCancel, /// LAContext passed to this call has been previously invalidated. LAErrorInvalidContext NS_ENUM_AVAILABLE(10_11, 9_0) = kLAErrorInvalidContext
其中,
LAErrorTouchIDLockout
是在8.0中也会出现的情况,但并未归为单独的错误类型,这个错误出现,源自用户多次连续使用Touch ID失败,Touch ID被锁,需要用户输入密码解锁,这个错误的交互LocalAuthentication.framework
已经封装好了,不需要开发者关心。
LAErrorAppCancel
和LAErrorSystemCancel
相似,都是当前软件被挂起取消了授权,但是前者是用户不能控制的挂起,例如突然来了电话,电话应用进入前台,APP被挂起。后者是用户自己切到了别的应用,例如按home键挂起。
LAErrorInvalidContext
很好理解,就是授权过程中,LAContext对象被释放掉了,造成的授权失败
官方文档就是这么短短几句话!!!