ModUserInfoViewController.swift 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. //
  2. // ModUserInfoViewController.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2019/1/28.
  6. // Copyright © 2019 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class ModUserInfoViewController: BaseViewController, UITextFieldDelegate {
  10. @IBOutlet weak var txtName: UITextField!
  11. ///0修改昵称 1:修改签名
  12. var typeTitle = "昵称"
  13. var type = 0
  14. override func viewDidLoad() {
  15. super.viewDidLoad()
  16. initNavLeftBackButton()
  17. if type == 0 {
  18. typeTitle = "昵称"
  19. txtName.text = CommonValue.getUserNickName()
  20. } else {
  21. typeTitle = "签名"
  22. txtName.text = ""
  23. }
  24. self.title = "设置\(typeTitle)"
  25. txtName.placeholder = "请输入\(typeTitle)"
  26. txtName.setContentMarginLeft(leftWidth: 22)
  27. initNavRightButtonForTitle(title: "保存", color: CommonUntils.getUIColorFromRGB(rgbValue: 0xffffff, alpha: 1.0))
  28. txtName.delegate = self
  29. }
  30. override func KeyboardHidden(gestureRecognizer: UIGestureRecognizer) {
  31. txtName.resignFirstResponder()
  32. }
  33. func textField(_ textField: UITextField, shouldChangeCharactersIn range: NSRange, replacementString string: String) -> Bool {
  34. // if txtName.text!.length() > 20 {
  35. // return false
  36. // } else {
  37. return true
  38. // }
  39. }
  40. override func btnRightMenuClick() {
  41. saveData()
  42. }
  43. // MARK: =============加载数据===============
  44. func saveData() {
  45. if txtName.text!.length() < 1 {
  46. SVProgressHUD.showError(withStatus: "请输入\(typeTitle)!")
  47. return
  48. }
  49. // if txtName.text!.length() > 10 {
  50. // txtName.attributedText = CommonViewUntils.getAttributedString(str: txtName.text!, left: [10, txtName.text!.length()], color: [CommonUntils.getUIColorFromRGB(rgbValue: 0x000000, alpha: 1.0), UIColor.red])
  51. // SVProgressHUD.showError(withStatus: "\(typeTitle)超过长度,最多可输入10个字符")
  52. // return
  53. // }
  54. let url = RequestURL.editUser
  55. let params = NSMutableDictionary()
  56. if type == 0 {
  57. params.setValue(txtName.text!, forKey: "nickName")
  58. } else {
  59. params.setValue(txtName.text!, forKey: "signature")
  60. }
  61. params.setValue(CommonValue.getUserId(), forKey: "userId")
  62. submitData(url: url, params: params, tag: 1001)
  63. }
  64. override func returnData(tag: Int) {
  65. if tag == 1001 {
  66. appDelegate.reloadUserInfo()
  67. SVProgressHUD.showSuccess(withStatus: "修改成功")
  68. handleBack()
  69. }
  70. }
  71. override func returnError(tag: Int, type: String) {
  72. if tag == 1001 {
  73. }
  74. }
  75. override func viewWillAppear(_ animated: Bool) {
  76. super.viewWillAppear(animated)
  77. }
  78. override init(nibName nibNameOrNil: String?, bundle nibBundleOrNil: Bundle?) {
  79. super.init(nibName: "ModUserInfoViewController", bundle: nil)
  80. }
  81. required init?(coder aDecoder: NSCoder) {
  82. fatalError("init(coder:) has not been implemented")
  83. }
  84. /*
  85. // MARK: - Navigation
  86. // In a storyboard-based application, you will often want to do a little preparation before navigation
  87. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  88. // Get the new view controller using segue.destination.
  89. // Pass the selected object to the new view controller.
  90. }
  91. */
  92. }