我有一个密码,当用户在TouchID屏幕上选择"Enter UIAlertController“时,系统会提示用户输入密码。在屏幕上显示后,如何恢复用户的输入?
let passwordPrompt = UIAlertController(title: "Enter Password", message: "You have selected to enter your passwod.", preferredStyle: UIAlertControllerStyle.Alert)
passwordPrompt.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Default, handler: nil))
passwordPrompt.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: nil))
passwordPrompt.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
textField.placeholder = "Password"
textField.secureTextEntry = true
})
presentViewController(passwordPrompt, animated: true, completion: nil)
我知道OK按钮可能应该有一个处理程序,但是现在这段代码并没有真正做任何事情,但是我想通过println显示文本字段的输出。这真的只是一个测试应用,让我学习Swift和一些新的API。
https://stackoverflow.com/questions/24172593
复制相似问题