我尝试了以下,但它不工作.
let alert = UIAlertController(Title: "New rating",message: "Rate this!",preferredStyle: UIAlertControllerStyle.Alert) let cancelAction = UIAlertAction(Title: "Cancel",style: .Default,handler: { (action: UIAlertAction!) in }) let saveAction = UIAlertAction(Title: "Save",handler: { (action: UIAlertAction!) in let textFIEld = alert.textFIElds![0] as UITextFIEld textFIEld.keyboardType = UIKeyboardType.NumberPad self.updaterating(textFIEld.text) }) alert.addTextFIElDWithConfigurationHandler { (textFIEld: UITextFIEld!) in } alert.addAction(cancelAction) alert.addAction(saveAction) self.presentVIEwController(alert,animated: true,completion: nil)解决方法 发现自己!这可能对别人有用.
alert.addTextFIEld(configurationHandler: { textFIEld in textFIEld.keyboardType = .numberPad})总结
以上是内存溢出为你收集整理的ios – 如何在警报控制器的文本框中设置数字键盘[swift]全部内容,希望文章能够帮你解决ios – 如何在警报控制器的文本框中设置数字键盘[swift]所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)