码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发中指纹识别简单介绍

时间:2017-12-02 23:18:10      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:通过   代码   nullable   支付   default   ios8   输入   对象   总结   

中指纹识别简单介绍,在iphone系列中,是从5S以后开始有了指纹识别的功能,在ios8的时候开放的指纹验证的接口。

所以我们在进行指纹识别应用的时候要去判断机型以及系统的版本。

代码如下,下面需要特别注意的其实就是LAPolicyDeviceOwnerAuthentication和LAPolicyDeviceOwnerAuthenticationWithBiometrics的区别,以及检测系统的版本通过[UIDevice currentDevice].systemVersion.floatValue,判断设备是否可用Touch ID就是通过canEvaluatePolicy: error:这个方法来进行判断。还有需要注意的是下面验证指纹识别是否成功的操作默认都是在子线程中进行的,所以我们如果要做UI的操作要回到主线程去执行。可用利用dispatch_async(dispatch_queue_t _Nonnull queue, ^{ }) 这个函数来实现,里面传入主队列即可。还有就是我们也可以根据eror的code来进行一些判断,看用户具体是因为什么原因导致的错误,然后在作出相应的输出。

  1. //1、判断系统版本是不是大于等于8.0如果大于等于的话就表示可以使用指纹识别
  2. if([UIDevice currentDevice].systemVersion.floatValue>=8.0)
  3. {
  4. //判断是否可以使用指纹识别的功能,是在5S之后才可以进行使用的
  5. //创建LA对象的上下文
  6. LAContext * context = [[LAContext alloc]init];
  7. //判断设备是否支持指纹识别
  8. //Evaluate 表示评估的意思
  9. //Policy表示的是策略
  10. //用来检查当前设备是否可用touchID
  11. if([context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:nil])
  12. {
  13. //LAPolicyDeviceOwnerAuthentication如果我们三次指纹输入的都错了,就会弹出密码框,如果不进行密码输入。再次进来还可以有两次机会验证指纹如果都
  14. 错误还会继续弹出系统密码框让你输入 如果你没输入touch ID就会被锁定,而LAPolicyDeviceOwnerAuthenticationWithBiometrics不会弹出输入系统
  15. 的密码框,输入三次错误之后,默认不会做任何处理,我们还可以重新再点击指纹识别进行输入,但是如果还是输入错误两次之后touch id就会被锁定
  16. //表示可以使用指纹识别技术
  17. [context evaluatePolicy:LAPolicyDeviceOwnerAuthentication localizedReason:@"请验证指纹进行支付" reply:^
  18. (BOOL success, NSError * _Nullable error) {
  19. //里面是在子线程中执行的,所以要更新UI的话,肯定是需要回到主线程去执行的
  20. //判断是否成功
  21. if(success)
  22. {
  23. NSLog(@"%@",[NSThread currentThread]);
  24. NSLog(@"验证成功");
  25. }
  26. else
  27. {
  28. NSLog(@"验证失败");
  29. }
  30. NSLog(@"%@",[NSThread currentThread]);
  31. NSLog(@"%@",error);
  32. if(error)
  33. {
  34. if(error.code==-2)
  35. {
  36. dispatch_async(dispatch_get_main_queue(), ^{
  37. UIAlertController * vc = [UIAlertController alertControllerWithTitle:@"指纹验证取消" message:@""
  38. preferredStyle:UIAlertControllerStyleAlert];
  39. UIAlertAction * action = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault
  40. handler:^(UIAlertAction * _Nonnull action) {
  41. NSLog(@"---------");
  42. }];
  43. UIAlertAction * action1 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel
  44. handler:^(UIAlertAction * _Nonnull action) {
  45. NSLog(@"hhhhhh");
  46. }];
  47. [vc addAction:action];
  48. [vc addAction:action1];
  49. [self presentViewController:vc animated:YES completion:nil];
  50. });
  51. }
  52. else if(error.code==-1)
  53. {
  54. dispatch_async(dispatch_get_main_queue(), ^{
  55. UIAlertController * vc = [UIAlertController alertControllerWithTitle:@"指纹已经输错3次" message:
  56. @"你还有两次机会" preferredStyle:UIAlertControllerStyleAlert];
  57. UIAlertAction * action = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault
  58. handler:^(UIAlertAction * _Nonnull action) {
  59. NSLog(@"---------");
  60. }];
  61. [vc addAction:action];
  62. [self presentViewController:vc animated:YES completion:nil];
  63. });
  64. }
  65. }
  66. }];
  67. }
  68. }
  69. else
  70. {
  71. NSLog(@"对不起,系统版本过低");
  72. }
复制代码

总结

以上所述是小编给大家介绍的iOS开发中指纹识别简单介绍,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

http://www.kmjdad.com/
http://www.jnsjzyy.com/
http://www.czhkwl.com/
http://www.express-o2o.com/
http://www.gzjindao.com/
http://www.chumingchuanmeiyishu.com/
http://www.thcxb.com/
http://www.xingguangkeji.com/
http://www.gdrhsy.com/
http://www.clhuiji.com/
http://www.nxjianye.com/
http://www.tjmingsheng.com/
http://www.gangguan022.com/
http://www.zyjbp.com/
http://www.qianhangmy.com/
http://www.tzminbell.com/

iOS开发中指纹识别简单介绍

标签:通过   代码   nullable   支付   default   ios8   输入   对象   总结   

原文地址:http://www.cnblogs.com/ljhseocom/p/7955845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!