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.

39 lines
1.0 KiB

6 years ago
  1. //
  2. // RequestNewCodeViewController.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 1/8/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class RequestNewCodeViewController: UIViewController {
  10. @IBOutlet weak var textFieldUserID: UITextField!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. textFieldUserID.text = UserDefaults.standard.object(forKey: "com.gmeremit.username") as? String
  14. // Do any additional setup after loading the view.
  15. }
  16. override func didReceiveMemoryWarning() {
  17. super.didReceiveMemoryWarning()
  18. // Dispose of any resources that can be recreated.
  19. }
  20. /*
  21. // MARK: - Navigation
  22. // In a storyboard-based application, you will often want to do a little preparation before navigation
  23. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  24. // Get the new view controller using segue.destinationViewController.
  25. // Pass the selected object to the new view controller.
  26. }
  27. */
  28. }