• iOS 指纹解锁


    目前常用的App支持指纹解锁的还不是很多,如果在你的项目中用一下是不是显得高大上呢?

    废话不说多,干货~

    1、在工程中添加LocalAuthentication.framework

    2、在需要验证的controller引入头文件

    #import <LocalAuthentication/LocalAuthentication.h>

    3、加入以下代码

     1 //验证指纹解锁是否可用
     2 - (void)canEvaluatePolicy
     3 {
     4     LAContext *context = [[LAContext alloc] init];
     5     NSError *error;
     6     BOOL success;
     7     
     8     // test if we can evaluate the policy, this test will tell us if Touch ID is available and enrolled
     9     success = [context canEvaluatePolicy: LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error];
    10     if (success) {
    11         NSLog(@"指纹解锁可用");
    12         [self evaluatePolicy];
    13     } else {
    14         NSLog(@"此设备指纹解锁不可用");
    15     }
    16 }
    17 
    18 //指纹验证
    19 - (void)evaluatePolicy
    20 {
    21     LAContext *context = [[LAContext alloc] init];
    22     
    23     // show the authentication UI with our reason string
    24     [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"通过home键验证已有手机指纹" reply:
    25      ^(BOOL success, NSError *authenticationError) {
    26          if (success) {
    27              NSLog(@"success");
    28          } else {
    29              NSLog(@"failure : %@ ",authenticationError.localizedDescription);
    30          }
    31      }];
    32 }

    效果图:需要真机调试哦,如果你的iPhone支持指纹解锁的话就可以玩玩啦。如果苦于没有开发者账号,请点击博客Xcode7无证书真机调试(不好意思,已经找不到没广告的博客了)

  • 相关阅读:
    为什么Redis比Memcached易
    请注意CSDN社区微通道,许多其他的精彩等着你
    采用ACE登录设施(一)HelloWorld
    AIX 7.1 install python
    spring mvc入门
    iOS开展——全球应对MotionEvent
    2015第35周日
    2015第35周六转相见恨晚的知识列表
    2015第35周五JavaScript变量
    2015第35周四
  • 原文地址:https://www.cnblogs.com/mmhc/p/4947149.html
Copyright © 2020-2023  润新知