swift – 从UIAlertController访问输入

前端之家收集整理的这篇文章主要介绍了swift – 从UIAlertController访问输入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UIAlertController,当他们选择“输入密码”在TouchID屏幕上时提示用户。如何在屏幕上显示后恢复用户的输入?
  1. let passwordPrompt = UIAlertController(title: "Enter Password",message: "You have selected to enter your passwod.",preferredStyle: UIAlertControllerStyle.Alert)
  2. passwordPrompt.addAction(UIAlertAction(title: "Cancel",style: UIAlertActionStyle.Default,handler: nil))
  3. passwordPrompt.addAction(UIAlertAction(title: "OK",handler: nil))
  4.  
  5. passwordPrompt.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
  6. textField.placeholder = "Password"
  7. textField.secureTextEntry = true
  8. })
  9.  
  10. presentViewController(passwordPrompt,animated: true,completion: nil)

我知道OK按钮应该可能有一个处理程序,但现在这个代码没有真正做任何,但我想通过println显示文本字段的输出。这真的只是一个测试应用程序,我学习Swift和一些新的API的东西。

我知道意见已发布回答问题,但答案应该使解决方案显式。
  1. @IBOutlet var newWordField: UITextField
  2. func wordEntered(alert: UIAlertAction!){
  3. // store the new word
  4. self.textView2.text = deletedString + " " + self.newWordField.text
  5. }
  6. func addTextField(textField: UITextField!){
  7. // add the text field and make the result global
  8. textField.placeholder = "Definition"
  9. self.newWordField = textField
  10. }
  11.  
  12. // display an alert
  13. let newWordPrompt = UIAlertController(title: "Enter definition",message: "Trainging the machine!",preferredStyle: UIAlertControllerStyle.Alert)
  14. newWordPrompt.addTextFieldWithConfigurationHandler(addTextField)
  15. newWordPrompt.addAction(UIAlertAction(title: "Cancel",handler: nil))
  16. newWordPrompt.addAction(UIAlertAction(title: "OK",handler: wordEntered))
  17. presentViewController(newWordPrompt,completion: nil)

这将显示带有文本字段和两个操作按钮的提示。它完成后读取文本字段。

猜你在找的Swift相关文章