标签: ios swift
您好我试图让iOS上的十进制键盘消失,但我没有成功,因为没有返回键。
答案 0 :(得分:-1)
试试这个,
override func touchesBegan(touches: Set<NSObject>, withEvent event: UIEvent) { self.view.endEditing(true) }
当用户触摸键盘/文本字段以外的某个地方时,它将被忽略。