// // SettingViewController.swift // GMERemittance // // Created by Sujal on 2/18/18. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved. // import UIKit class SettingViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() setUpNavBar(id: 202, title: "") } override func viewWillAppear(_ animated: Bool) { setUpNavBar(id: 202, title: "") } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() } /** Redirect to change password view */ @IBAction func redirectToChangePassword(_ sender: Any) { let storyboard = UIStoryboard.init(name: "Profile", bundle: Bundle.main) if let changePasswordViewController = storyboard.instantiateViewController(withIdentifier: "changePassword") as? ProfileChangePasswordViewController { self.navigationController!.pushViewController(changePasswordViewController, animated: true) } } }