Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JayachandraA/7c31eb886fb0962cf42e748f5e05fe6b to your computer and use it in GitHub Desktop.
Save JayachandraA/7c31eb886fb0962cf42e748f5e05fe6b to your computer and use it in GitHub Desktop.
func performLogin(alertController: UIAlertController) {
guard let textFields = alertController.textFields else { return }
var params = [String:String]()
for textField in textFields{
if textField.placeholder == "Enter username"{
params["username"] = textField.text
}
if textField.placeholder == "Enter password"{
params["password"] = textField.text
}
}
print("login params \(params)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment