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

时间:2015-02-18 21:17:22

标签: ios swift uitextfield uialertcontroller

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

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)

2 个答案:

答案 0 :(得分:24)

自己找到它!它可能对其他人有用。

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

答案 1 :(得分:3)

斯威夫特3:

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