如何让iOS中的十进制键盘消失

时间:2015-06-30 20:22:57

标签: ios swift

您好我试图让iOS上的十进制键盘消失,但我没有成功,因为没有返回键。

1 个答案:

答案 0 :(得分:-1)

试试这个,

override func touchesBegan(touches: Set<NSObject>, withEvent event: UIEvent) {
    self.view.endEditing(true)
}

当用户触摸键盘/文本字段以外的某个地方时,它将被忽略。