博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS - (个人隐私钱包调用系统本机TouchID指纹锁验证)
阅读量:6168 次
发布时间:2019-06-21

本文共 1926 字,大约阅读时间需要 6 分钟。

//

//  ViewController.m

//  TouchID指纹验证

//

//  Created by apple on 16/9/18.

//  Copyright © 2016 apple. All rights reserved.

//

 

#import "ViewController.h"

#import "HomeViewController.h"//跳转成功后需要跳转到的视图控制器

#import <LocalAuthentication/LocalAuthentication.h>//导入TouchID需要的类库

#import <sys/utsname.h> //获取设备基本信息需要的类库

@interface ViewController ()

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

 

    [self touchID];

}

 

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event

{

    //调用TouchID会执行此方法,有需要可以实现一些另外的功能

}

 

- (void)touchID {

    LAContext *context = [[LAContext alloc] init];

    NSError *error = nil;

    // 第一步判断是否支持Touch ID 或者 本机是否已经录入指纹

    if ([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error]) {

        [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics localizedReason:@"请验证已有指纹" reply:^(BOOL success, NSError * _Nullable error) {

            if (error) {

                NSLog(@"验证失败"); // 系统会自动给错误提示

            }else{

                dispatch_async(dispatch_get_main_queue(), ^{

                    // 指纹验证成功后跳转

                    HomeViewController *home = [[HomeViewController alloc] init];

                    [self presentViewController:home animated:YES completion:nil];

                });

            }

        }];

    }else {

        // 判断是否真机运行

        if (self.isSimulator) {

            [[[UIAlertView alloc] initWithTitle:@"提示" message:@"请用真机测试~" delegate:nil cancelButtonTitle:@"好的" otherButtonTitles:nil, nil] show];

        }else{

            [[[UIAlertView alloc] initWithTitle:@"提示" message:@"不支持Touch ID~" delegate:nil cancelButtonTitle:@"好的" otherButtonTitles:nil, nil] show];

        }

    }

}

// 判断当前设备是否支持TouchID功能

- (BOOL)isSimulator{

    struct utsname systemInfo;

    uname(&systemInfo);

    NSString *deviceMachine = [NSString stringWithCString:systemInfo.machine encoding:NSUTF8StringEncoding];

    if ([deviceMachine isEqualToString:@"i386"] || [deviceMachine isEqualToString:@"x86_64"])       {

        return YES;

    }

    return NO;

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

 

@end

转载地址:http://tojba.baihongyu.com/

你可能感兴趣的文章
业界最有价值的Linux资料大全(200篇)
查看>>
Arraylist动态扩容详解
查看>>
%cd%及%~dp0批处理命令的详解
查看>>
MySQL数据库负载很高连接数很多怎么处理
查看>>
关于延迟加载(lazy)和强制加载(Hibernate.initialize(Object proxy) )
查看>>
Cent OS 环境下 samba服务器的搭建
查看>>
vCloud Director 1.5.1 Install Procedure
查看>>
hive 中的多列进行group by查询方法
查看>>
Cisco统一通信---视频部分
查看>>
nginx编译及参数详解
查看>>
VMware下PM魔术分区使用教程
查看>>
nslookup错误
查看>>
我的友情链接
查看>>
Supported plattforms
查看>>
做自己喜欢的事情
查看>>
CRM安装(二)
查看>>
Eclipse工具进行Spring开发时,Spring配置文件智能提示需要安装STS插件
查看>>
NSURLCache内存缓存
查看>>
jquery click嵌套 事件重复注册 多次执行的问题
查看>>
Dev GridControl导出
查看>>