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.

49 lines
1.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. //
  2. // RecipientFormViewController.swift
  3. // GMERemittance
  4. //
  5. // Created by Fm-user on 12/22/17.
  6. // Copyright © 2017 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. import SDWebImage
  10. protocol PaginationDelegate {
  11. func updateCurrentIndex(status:String,recipient: Recipient,pageNumber: Int)
  12. }
  13. class RecipientFormViewController: UIViewController {
  14. @IBOutlet weak var scrollView: UIScrollView!
  15. @IBOutlet weak var textFieldFirstName: UITextField!
  16. @IBOutlet weak var textFieldMiddleName: UITextField!
  17. @IBOutlet weak var textFieldLastName: UITextField!
  18. @IBOutlet weak var textFieldCountry: UITextField!
  19. @IBOutlet weak var textFieldState: UITextField!
  20. @IBOutlet weak var textFieldDistrict: UITextField!
  21. @IBOutlet weak var textFieldCity: UITextField!
  22. @IBOutlet weak var textFieldAddress: UITextField!
  23. @IBOutlet weak var textFieldRelation: UITextField!
  24. @IBOutlet weak var textFieldMobile: UITextField!
  25. @IBOutlet weak var textFieldEmail: UITextField!
  26. @IBOutlet weak var textFieldTransferReason: UITextField!
  27. var recipient: Recipient?
  28. @IBAction func createOrUpdateRecipient(_ sender: Any) {
  29. print("save or update")
  30. }
  31. override func viewDidLoad() {
  32. super.viewDidLoad()
  33. setUpNavBar(id: 201, title: "Send Money")
  34. // fetchCountryList()
  35. // fetchTransferReason()
  36. // fetchRelationList()
  37. }
  38. }