CommonLocalAuthentication.swift 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // CommonLocalAuthentication.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2018/1/15.
  6. // Copyright © 2018年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CommonLocalAuthentication: NSObject {
  10. class func localAuthentication() {
  11. let context = LAContext()
  12. context.localizedFallbackTitle = "*"
  13. if #available(iOS 10.0, *) {
  14. context.localizedCancelTitle = "取消"
  15. } else {
  16. // Fallback on earlier versions
  17. }
  18. var error: NSError?
  19. if context.canEvaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, error: &error) {
  20. context.evaluatePolicy(.deviceOwnerAuthenticationWithBiometrics, localizedReason: "需要验证您的touch ID", reply: { (success, _) in
  21. if success {
  22. print("===登录成功====")
  23. } else {
  24. print("===登录验证失败====")
  25. // switch((error as! NSError).code)
  26. // {
  27. // case kLAErrorSystemCancel:
  28. // print("切换到其他APP,系统取消验证Touch ID")
  29. // break;
  30. // case kLAErrorUserCancel:
  31. // print("用户取消验证Touch ID")
  32. // break;
  33. // default:
  34. // break;
  35. // }
  36. }
  37. })
  38. } else {
  39. print("===不支持指纹识别====")
  40. }
  41. }
  42. }