You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0 KiB

6 years ago
  1. //
  2. // SettingViewController.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 2/18/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class SettingViewController: UIViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. setUpNavBar(id: 202, title: "")
  13. }
  14. override func viewWillAppear(_ animated: Bool) {
  15. setUpNavBar(id: 202, title: "")
  16. }
  17. override func didReceiveMemoryWarning() {
  18. super.didReceiveMemoryWarning()
  19. }
  20. /**
  21. Redirect to change password view
  22. */
  23. @IBAction func redirectToChangePassword(_ sender: Any) {
  24. let storyboard = UIStoryboard.init(name: "Profile", bundle: Bundle.main)
  25. if let changePasswordViewController = storyboard.instantiateViewController(withIdentifier: "changePassword") as? ProfileChangePasswordViewController {
  26. self.navigationController!.pushViewController(changePasswordViewController, animated: true)
  27. }
  28. }
  29. }