我正在尝试调用具有文本字段的警报控制器。但我想立即显示数字键盘,因为用户只应输入数字。 我尝试了以下但是它不起作用。
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", style: .Default, 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)
答案 0 :(得分:24)
自己找到它!它可能对其他人有用。
alert.addTextField(configurationHandler: { textField in
textField.keyboardType = .numberPad
})
答案 1 :(得分:3)
斯威夫特3:
alert.addTextField { (textField) in
textField.keyboardType = .decimalPad
}