GuesturePasswordViewController.swift 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. //
  2. // GuesturePasswordViewController.swift
  3. // xingchuangke
  4. //
  5. // Created by Virgil on 2019/3/22.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class GuesturePasswordViewController: BaseViewController {
  10. @IBOutlet weak var viewTemp: UIView!
  11. @IBOutlet weak var btnOtherLogin: UIButton!
  12. @IBOutlet weak var btnForgetPassword: UIButton!
  13. @IBOutlet weak var lblRemark: UILabel!
  14. @IBOutlet weak var lblName: UILabel!
  15. @IBOutlet weak var imgIcon: UIImageView!
  16. /// 0:设置密码 1:检查密码
  17. var type = 0
  18. @IBOutlet weak var viewGuesture: UIView!
  19. override func viewDidLoad() {
  20. super.viewDidLoad()
  21. if type == 0 {
  22. DBGuestureLock.clearPassword()
  23. initNavLeftBackButton()
  24. self.title = "设置手势密码"
  25. lblName.text = CommonValue.getUserNickName()
  26. lblRemark.text = "请输入您的手势"
  27. btnForgetPassword.isHidden = true
  28. btnOtherLogin.isHidden = true
  29. } else {
  30. self.navigationItem.hidesBackButton = true
  31. self.title = "手势登录"
  32. lblName.text = "欢迎回来,\(CommonValue.getUserNickName())"
  33. lblRemark.text = "请输入您的手势"
  34. }
  35. imgIcon.loadImage(imgUrl: CommonValue.getUserLogo(), defaultImage: "common_user")
  36. imgIcon.setCornerRadius()
  37. viewGuesture.setSizeHeight(height: ScreenWidth + 40)
  38. let lock = DBGuestureLock.init(on: self.viewGuesture, onPasswordSet: {[weak self] (lock, password) in
  39. print("=1=\(password)===")
  40. self!.setPassword(password: password!)
  41. }, onGetCorrectPswd: {[weak self] (lock, password) in
  42. print("=2=\(password)===")
  43. self!.correctPswd(password: password!)
  44. }) {[weak self] (_, password) in
  45. print("=3=\(password)===")
  46. self!.inCorrectPswd(password: password!)
  47. }
  48. lock?.setupLockTheme(withLineColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x37A6FF, alpha: 1.0), lineWidth: 2, stroke: CommonUntils.getUIColorFromRGB(rgbValue: 0x37A6FF, alpha: 1.0), strokeWidth: 2, circleRadius: 15, fill: nil, showCenterPoint: true, centerPointColor: CommonUntils.getUIColorFromRGB(rgbValue: 0x37A6FF, alpha: 1.0), centerPointRadius: 5, fillCenterPoint: false, on: .selected)
  49. lock?.setupLockTheme(withLineColor: nil, lineWidth: 2, stroke: nil, strokeWidth: 2, circleRadius: 15, fill: nil, showCenterPoint: true, centerPointColor: UIColor.lightGray, centerPointRadius: 10, fillCenterPoint: true, on: .normal)
  50. viewGuesture.addSubview(lock!)
  51. viewTemp.frame = viewGuesture.frame
  52. timer = Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(move), userInfo: nil, repeats: true)
  53. timer.fireDate = Date.distantFuture
  54. }
  55. var timer: Timer!
  56. var strSetPassword = ""
  57. func setPassword(password: String) {
  58. if strSetPassword == "" {
  59. strSetPassword = password
  60. lblRemark.text = "请再次输入您的手势"
  61. }
  62. }
  63. var errorCount = 0
  64. func correctPswd(password: String) {
  65. if type == 0 {
  66. lblRemark.text = "手势密码设置成功"
  67. SVProgressHUD.showSuccess(withStatus: "手势密码设置成功")
  68. CommonValue.setDefaultUserInfoForString(value: "1", key: "common_default_is_ss_password")
  69. handleBack()
  70. } else {
  71. handleBack()
  72. }
  73. }
  74. func inCorrectPswd(password: String) {
  75. if type == 0 {
  76. lblRemark.text = "两次手势密码不一致,请重新输入"
  77. lblRemark.textColor = UIColor.red
  78. errorCount += 1
  79. if errorCount == 5 {
  80. errorCount = 0
  81. strSetPassword = ""
  82. lblRemark.text = "请重新输入您的手势"
  83. lblRemark.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x999999, alpha: 1.0)
  84. DBGuestureLock.clearPassword()
  85. }
  86. } else {
  87. lblRemark.text = "手势密码不正确,请重新输入"
  88. lblRemark.textColor = UIColor.red
  89. errorCount += 1
  90. if errorCount == 5 {
  91. errorCount = 0
  92. viewTemp.isHidden = false
  93. count = 60
  94. timer.fireDate = Date.distantPast
  95. }
  96. }
  97. }
  98. var count = 60
  99. @objc func move() {
  100. lblRemark.text = "\(count)s后再试"
  101. lblRemark.textColor = UIColor.red
  102. count -= 1
  103. if count == 0 {
  104. lblRemark.text = "请输入您的手势"
  105. lblRemark.textColor = CommonUntils.getUIColorFromRGB(rgbValue: 0x999999, alpha: 1.0)
  106. timer.fireDate = Date.distantFuture
  107. viewTemp.isHidden = true
  108. }
  109. }
  110. @IBAction func btnOtherLoginClick(_ sender: Any) {
  111. let login = LoginViewController()
  112. login.type = 1
  113. toViewController(viewController: login)
  114. }
  115. override func viewWillAppear(_ animated: Bool) {
  116. super.viewWillAppear(animated)
  117. }
  118. override func viewDidAppear(_ animated: Bool) {
  119. super.viewDidAppear(animated)
  120. closeRightBack()
  121. }
  122. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  123. super.init(nibName: "GuesturePasswordViewController", bundle: nil)
  124. }
  125. required init?(coder aDecoder: NSCoder) {
  126. fatalError("init(coder:) has not been implemented")
  127. }
  128. }