SafeSettingViewController.swift 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //
  2. // SettingViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/1/26.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class SafeSettingViewController: BaseViewController {
  10. @IBOutlet weak var lblVersion: UILabel!
  11. @IBOutlet weak var rad2: UISwitch!
  12. @IBOutlet weak var rad1: UISwitch!
  13. override func viewDidLoad() {
  14. super.viewDidLoad()
  15. initNavLeftBackButton()
  16. self.title = "安全设置"
  17. rad1.setSize(x: 0.75, y: 0.7)
  18. rad2.setSize(x: 0.75, y: 0.7)
  19. lblVersion.text = CommonUntils.getSystemVersion()
  20. }
  21. @IBAction func chkChange(_ sender: UISwitch) {
  22. if(sender.tag == 1001) //登录密码
  23. {
  24. if rad1.isOn {
  25. CommonValue.setDefaultUserInfoForString(value: "1", key: "common_default_is_alert_hb_sound")
  26. } else {
  27. CommonValue.setDefaultUserInfoForString(value: "0", key: "common_default_is_alert_hb_sound")
  28. }
  29. } else if(sender.tag == 1002) //手势密码
  30. {
  31. if rad2.isOn {
  32. toViewController(viewController: GuesturePasswordViewController())
  33. } else {
  34. DBGuestureLock.clearPassword()
  35. CommonValue.setDefaultUserInfoForString(value: "0", key: "common_default_is_ss_password")
  36. }
  37. // CommonLocalAuthentication.localAuthentication();
  38. //toViewController(viewController: GuesturePasswordViewController());
  39. }
  40. }
  41. @IBAction func btnModPasswordClick(_ sender: Any) {
  42. let vc = ForgetPasswordViewController()
  43. vc.type = 1
  44. toViewController(viewController: vc)
  45. }
  46. @IBAction func btnClick(_ sender: Any) {
  47. if CommonUntils.getIsSimulator() {
  48. SVProgressHUD.showError(withStatus: "模拟器环境下不能拨打电话")
  49. } else {
  50. if CommonValue.getDefaultValueForKey(key: "customer_phone") != "" {
  51. CommonUntils.callPhone(phone: CommonValue.getDefaultValueForKey(key: "customer_phone"))
  52. }
  53. }
  54. }
  55. override func viewWillAppear(_ animated: Bool) {
  56. super.viewWillAppear(animated)
  57. if CommonValue.getDefaultUserInfoForString(key: "common_default_is_alert_hb_sound") == "0" {
  58. rad1.isOn = false
  59. } else {
  60. rad1.isOn = true
  61. }
  62. if CommonValue.getDefaultUserInfoForString(key: "common_default_is_ss_password") == "0" {
  63. rad2.isOn = false
  64. } else {
  65. rad2.isOn = true
  66. }
  67. }
  68. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  69. super.init(nibName: "SafeSettingViewController", bundle: nil)
  70. }
  71. required init?(coder aDecoder: NSCoder) {
  72. fatalError("init(coder:) has not been implemented")
  73. }
  74. }