iOS - (个人隐私钱包调用系统本机TouchID指纹锁验证)

//

//  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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值