如何在警报控制器的文本字段中使用数字键盘

我正在尝试调用一个具有文本字段的警报控制器。 但是我想立即显示数字键盘,因为用户只需要input数字。 我尝试了以下,但它不工作。

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) 

自己find它! 这可能对别人有用。

 alert.addTextField(configurationHandler: { textField in textField.keyboardType = .numberPad }) 

Swift 3:

 alert.addTextField { (textField) in textField.keyboardType = .decimalPad }