指纹手势功能详解

最近在app上加上了指纹和手势验证功能,功能告一段落,简单阐述下。大家可以更好的集成到自己的项目中。

  • 1、指纹
    我把指纹的验证和登录集成成一个service,看下代码然后解释吧:
@interface KZWFingerprintService : NSObject

+ (void)openFingerprintService:(UIViewController *)controller tableView:(UITableView *)tableView;

+ (void)fingerprintService:(UIViewController *)controller;

@end

一个service,2个方法,一个验证是否开启,一个登录。

  • 验证
+ (void)openFingerprintService:(UIViewController *)controller tableView:(UITableView *)tableView{
   if ([[NSUserDefaults standardUserDefaults] boolForKey:@"FINGERPRINTLOGIN"]) {
       LAContext *context = [[LAContext alloc] init];
       NSError *error = nil;
       if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
           UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"确定关闭指纹密码?" message:@"关闭后将不能用指纹快捷登录" preferredStyle:1];
           UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"不了" style:UIAlertActionStyleCancel handler:nil];
           UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
               [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
                       localizedReason:@"验证touchID"
                                 reply:^(BOOL success, NSError *error) {
                                     if (success) {
                                         [[NSUserDefaults standardUserDefaults]setBool:NO forKey:@"FINGERPRINTLOGIN"];
                                         dispatch_async(dispatch_get_main_queue(), ^{
                                             [KZWTosatView showToastWithMessage:@"指纹登录关闭" view:nil];
                                             [tableView reloadData];
                                         });
                                     } else {
                                         switch (error.code) {
                                             case LAErrorUserCancel: //用户取消验证Touch ID
                                             {
                                                 
                                             }
                                                 break;
                                             case LAErrorTouchIDLockout: //连续五次指纹识别错误,下一次需要输入系统密码
                                             {
                                                 [context evaluatePolicy:LAPolicyDeviceOwnerAuthentication localizedReason:@"密码解锁" reply:^(BOOL success, NSError * _Nullable error){
                                                     
                                                 }];
                                             }
                                                 break;
                                             case LAErrorUserFallback: // 用户选择输入密码
                                             {
                                                 [[ELMRouter sharedRouter] open:LPD_ROUTER_URL(@"KZWMobileLoginViewController", (@{
                                                                                                                                   @"fromGesturelogin": @(2)                                                                                      }))
                                                                       animated:YES
                                                                      showStyle:ELMPageShowStyleModal];
                                                 
                                             }
                                                 break;
                                             case LAErrorAuthenticationFailed:
                                             {
                                                 dispatch_async(dispatch_get_main_queue(), ^{
                                                     [KZWTosatView showToastWithMessage:@"失败次数过多,请谨慎操作" view:controller.view];
                                                 });
                                             }
                                                 break;
                                             default:
                                             {
                                                 dispatch_async(dispatch_get_main_queue(), ^{
                                                     [KZWTosatView showToastWithMessage:@"验证失败" view:nil];
                                                 });
                                             }
                                                 break;
                                         }
                                     }
                                 }];
           }];
           [alert addAction:cancelAction];
           [alert addAction:sureAction];
           
           [controller presentViewController:alert animated:YES completion:nil];
       }else {
           UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"设备不支持指纹识别" message:@"账号登录来关闭指纹解锁" preferredStyle:1];
           UIAlertAction *sure = [UIAlertAction actionWithTitle:@"登录" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
               [[ELMRouter sharedRouter] open:LPD_ROUTER_URL(@"KZWMobileLoginViewController", (@{
                                                                                                 @"fromGesturelogin": @(2)                                                                                      }))
                                     animated:YES
                                    showStyle:ELMPageShowStyleModal];
           }];
           UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"稍后" style:UIAlertActionStyleCancel handler:nil];
           [alert addAction:sure];
           [alert addAction:cancelAction];
           [controller presentViewController:alert animated:YES completion:nil];
       }
       return;
   }
   LAContext *context = [[LAContext alloc] init];
   NSError *error = nil;
   if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {
       UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"是否开启指纹登录?" message:@"登录更加方便快捷" preferredStyle:1];
       UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"稍后" style:UIAlertActionStyleCancel handler:nil];
       UIAlertAction *sureAction = [UIAlertAction actionWithTitle:@"启用" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
           [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
                   localizedReason:@"验证touchID"
                             reply:^(BOOL success, NSError *error) {
                                 if (success) {
                                     [[NSUserDefaults standardUserDefaults]setBool:YES forKey:@"FINGERPRINTLOGIN"];
                                     dispatch_async(dispatch_get_main_queue(), ^{
                                         [KZWTosatView showToastWithMessage:@"验证成功" view:nil];
                                         [tableView reloadData];
                                     });
                                 } else {
                                     switch (error.code) {
                                         case LAErrorUserCancel: //用户取消验证Touch ID
                                         {
                                             
                                         }
                                             break;
                                         case LAErrorTouchIDLockout: //连续五次指纹识别错误,下一次需要输入系统密码
                                         {
                                             [context evaluatePolicy:LAPolicyDeviceOwnerAuthentication localizedReason:@"密码解锁" reply:^(BOOL success, NSError * _Nullable error){
                                                 
                                             }];
                                         }
                                             break;
                                         case LAErrorAuthenticationFailed:
                                         {
                                             dispatch_async(dispatch_get_main_queue(), ^{
                                                 [KZWTosatView showToastWithMessage:@"失败次数过多,请谨慎操作" view:controller.view];
                                             });
                                         }
                                             break;
                                         default:
                                         {
                                             dispatch_async(dispatch_get_main_queue(), ^{
                                                 [KZWTosatView showToastWithMessage:@"验证失败" view:nil];
                                             });
                                         }
                                             break;
                                     }
                                 }
                             }];
       }];
       [alert addAction:cancelAction];
       [alert addAction:sureAction];
       
       [controller presentViewController:alert animated:YES completion:nil];
   }else {
       UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"设备不支持指纹识别" message:@"是否开启手势密码" preferredStyle:1];
       UIAlertAction *sure = [UIAlertAction actionWithTitle:@"是" style:UIAlertActionStyleDestructive handler:^(UIAlertAction * _Nonnull action) {
           GestureViewController *gestureVc = [[GestureViewController alloc] init];
           gestureVc.type = GestureViewControllerTypeSetting;
           [controller.navigationController pushViewController:gestureVc animated:YES];
       }];
       UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"稍后" style:UIAlertActionStyleCancel handler:nil];
       [alert addAction:sure];
       [alert addAction:cancelAction];
       [controller presentViewController:alert animated:YES completion:nil];
   }
}

这段代码有点长,其实写好点是可以拆成2 个方法,因为一个是验证开启,一个验证关闭。传了2个参数,一个controller,一个tableview,目的一个是跳转和刷新当前tableview。
第一个判断[[NSUserDefaults standardUserDefaults] boolForKey:@"FINGERPRINTLOGIN"]就是判断是否开启指纹识别,是的话就是关闭,否的话就是开启。里面的逻辑[context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
localizedReason:@"验证touchID"
reply:^(BOOL success, NSError *error) 这个方法就是核心方法,验证指纹,处理的核心逻辑,成功,指纹开启,失败,其中重点是失败3次LAErrorAuthenticationFailed,失败5次LAErrorTouchIDLockout,用户点击输入密码LAErrorUserFallback,用户取消LAErrorUserCancel的处理。特殊的一点是在取消指纹的时候用户如果关闭了指纹会直接不弹框我做的处理是弹UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"设备不支持指纹识别" message:@"账号登录来关闭指纹解锁" preferredStyle:1];这样不会死循环关不了。

  • 登录
+ (void)fingerprintService:(UIViewController *)controller {
   LAContext *context = [[LAContext alloc] init];
   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(), ^{
                                     dispatch_async(dispatch_get_main_queue(), ^{
                                         [self dismissModalStack:controller];
                                     });
                                 });
                             } else {
                                 switch (error.code) {
                                     case LAErrorUserCancel: //用户取消验证Touch ID
                                     {
                                         
                                     }
                                         break;
                                     case LAErrorTouchIDLockout: //连续五次指纹识别错误
                                     {
                                         [context evaluatePolicy:LAPolicyDeviceOwnerAuthentication localizedReason:@"密码解锁" reply:^(BOOL success, NSError * _Nullable error){
                                             
                                         }];
                                     }
                                         break;
                                     case LAErrorUserFallback: // 用户选择输入密码
                                     {
                                         [ELMKeychainUtil deleteAllInfoInKeyChain];
                                         [[ELMRouter sharedRouter] open:@"KZWMobileLoginViewController" animated:YES showStyle:ELMPageShowStyleModal];
                                     }
                                         break;
                                     case LAErrorAuthenticationFailed:
                                     {
                                         dispatch_async(dispatch_get_main_queue(), ^{
                                             [KZWTosatView showToastWithMessage:@"失败次数过多,请谨慎操作" view:controller.view];
                                         });
                                     }
                                         break;
                                     default:
                                     {
                                         dispatch_async(dispatch_get_main_queue(), ^{
                                             [KZWTosatView showToastWithMessage:@"验证失败" view:controller.view];
                                         });
                                     }
                                         break;
                                 }
                             }
                         }];
   }else {
       dispatch_async(dispatch_get_main_queue(), ^{
           [KZWTosatView showToastWithMessage:@"设备不支持指纹识别" view:controller.view];
       });
   }
}

核心逻辑和验证的差不多,不懂的看代码哈。

  • 2、手势
    手势的核心我用的是第三方的基础上进行二次开发,这个网上很多下个差不多的改下就可以了。
    说下逻辑处理:重点是在切换登录方式的时候,因为有的不在一条线上,push和pop的混用会导致你切的时候有一点麻烦。这个时候你就需要route这个强大的东西了,然后就是你各种pop和push 的时候的栈的释放,我用的这个方法:
+(void)dismissModalStack:(UIViewController *)vcr {
   UIViewController *vc = vcr.presentingViewController;
   while (vc.presentingViewController) {
       vc = vc.presentingViewController;
   }
   [vc dismissViewControllerAnimated:YES completion:NULL];
}

可以直接全部释放。
开启手势:

- (void)gestureSetting {
   if ([[NSUserDefaults standardUserDefaults] boolForKey:@"GESTURELOGIN"]) {
       GestureVerifyViewController *gestureVerifyVc = [[GestureVerifyViewController alloc] init];
       [self.navigationController pushViewController:gestureVerifyVc animated:YES];
       return;
   }
   GestureViewController *gestureVc = [[GestureViewController alloc] init];
   gestureVc.type = GestureViewControllerTypeSetting;
   [self.navigationController pushViewController:gestureVc animated:YES];
}

一个判断是否开启手势,没开启跳开启,开启跳验证关闭。
修改手势:

if ([[NSUserDefaults standardUserDefaults] boolForKey:@"GESTURELOGIN"]) {
                       GestureVerifyViewController *gestureVerifyVc = [[GestureVerifyViewController alloc] init];
                       gestureVerifyVc.isToSetNewGesture = YES;
                       [self.navigationController pushViewController:gestureVerifyVc animated:YES];
                   }else {
                       [KZWTosatView showToastWithMessage:@"请先设置手势密码" view:self.view];
                   }

手势登录:

           [[ELMRouter sharedRouter] open:@"GestureViewController" animated:YES showStyle:ELMPageShowStyleModal];

一般的场景有2种,直接进来就验证那直接把这段代码写在appdelegate的didFinishLaunchingWithOptions就好了:

if ([ELMKeychainUtil valueInKeyChainForKey:KZWFINANCIALLOGINTOKEN]) {
       if ([[NSUserDefaults standardUserDefaults] boolForKey:@"FINGERPRINTLOGIN"]) {
           [[ELMRouter sharedRouter] open:@"KZWFingerprintLoginViewController" animated:YES showStyle:ELMPageShowStyleModal];
       }else if([[NSUserDefaults standardUserDefaults] boolForKey:@"GESTURELOGIN"]){
           [[ELMRouter sharedRouter] open:@"GestureViewController" animated:YES showStyle:ELMPageShowStyleModal];
       }
   }

如果是在个人中心的时候才验证,我的做法是appdelegate里给个参数 @property (assign, nonatomic) BOOL needCheck;在didFinishLaunchingWithOptions方法里赋值yes,然后再个人中心里判断yes就走上面的代码然后needCheck赋值为no,就好了。
有什么问题欢迎交流。
有个问题需要注意的是,在有指纹,手势,面部识别页面弹出时,你的广告、弹框,这些应该是加到你的主页的rootViewController上,而不是直接在appdelegate里判断因为这样会弹到引导页和面部识别页面上,如果识别过了,你的弹层也就释放了。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,016评论 4 62
  • 好久没写文章了,最近也比较偷懒,今天继续讨论我实际开发中遇到的需求,那就是关于APP解锁,大家都知道。现在越来越多...
    青蛙要fly阅读 3,039评论 2 26
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,391评论 25 707
  • 今天下班回来的时候雨下的越来越大,还没吃饭就跑回家里了,还好没有碰到最大的时候,不知道怎么回事差点就忘记写日记了…...
    熊猫掰棒子阅读 122评论 0 0
  • 要事优先——最想养成的习惯 从很早之前,我知道是要事优先没做到的原因,进而反复的犯同样的错误,而自己竟然不闻不问,...
    北方荣荣阅读 4,710评论 0 1