首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >访问来自UIAlertController的输入

访问来自UIAlertController的输入
EN

Stack Overflow用户
提问于 2014-06-12 05:07:03
回答 4查看 34.9K关注 0票数 49

我有一个密码,当用户在TouchID屏幕上选择"Enter UIAlertController“时,系统会提示用户输入密码。在屏幕上显示后,如何恢复用户的输入?

代码语言:javascript
运行
复制
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。

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/24172593

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档