Browse Source

kyc fomr 1 placeholder string managed

pull/1/head
gme_2 6 years ago
parent
commit
3af17d212c
  1. 17
      GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift

17
GMERemittance/Module/New Group/kycForm1/User Interface/View/kycForm1ViewController.swift

@ -55,13 +55,21 @@ class KycForm1ViewController: UIViewController {
struct StringConstants {
static let fullname = "Full Name"
static let fullnamePlaceholder = "Enter your Full Name"
static let mobileNumber = "Mobile No"
static let mobilePlaceholder = "Enter your Mobile No."
static let email = "Email Address"
static let emailPlaceholder = "Enter your Email Address"
static let gender = "Gender"
static let genderPlacholder = "Select your Gender"
static let nativeCountry = "Native Country"
static let nativeCountryPlaceholder = "Enter your Native Country"
static let addressInKorea = "Address In Korea"
static let addressPlaceholder = "Your Address In Korea"
static let province = "Province"
static let provincePlaceholder = "Enter your City"
static let occupation = "Occupation"
static let occupationPlaceholder = "Select your Occupation"
static let saveAndCoutinueText = "Save and Continue"
}
@ -229,6 +237,15 @@ class KycForm1ViewController: UIViewController {
self.provinceTitleLabel.text = StringConstants.province
self.occupationTitleLabel.text = StringConstants.occupation
self.saveAndContinue.setTitle(StringConstants.saveAndCoutinueText, for: UIControlState.normal)
self.firstNameTextField.placeholder = StringConstants.fullnamePlaceholder
self.mobileNumberTextField.placeholder = StringConstants.mobilePlaceholder
self.emailTextField.placeholder = StringConstants.emailPlaceholder
self.genderTextField.placeholder = StringConstants.genderPlacholder
self.nativeCountryTextField.placeholder = StringConstants.nativeCountryPlaceholder
self.countryTextField.placeholder = StringConstants.addressPlaceholder
self.provinceTextField.placeholder = StringConstants.provincePlaceholder
self.occupationTextField.placeholder = StringConstants.occupationPlaceholder
}
private func setupEmail() {

Loading…
Cancel
Save