如何在下面给出的Hidekeyboard函数中包含多个UITextField?

时间:2017-12-30 03:20:41

标签: ios swift function keyboard

我正在尝试实现一个功能,当用户点击除键盘之外的其他地方时,可以让小数位垫消失。问题是我目前只知道这个函数,据我所知只适用于1 textField:

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    self.Alkoholanteil.endEditing(true)
}

我只能输入您可以看到的文本字段“Referencetime”。 是否有一个功能允许键盘在用户触摸时消失,但键盘为4个文本字段但不是1?

1 个答案:

答案 0 :(得分:0)

你可以用:

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    self.view.endEditing(true)
}

哪个适用于所有textField