iOS 中的 UIKeyboard 字母单击操作
UIKeyboard letter click action in iOS
我想在 iOS 应用程序中获取 UIKeyboard 的每个字母点击操作,
swift 有可能吗?
如:
func textFieldShouldReturn(textField: UITextField) -> Bool {
...
}
但是在其他按钮上..没有创建自定义键盘
func textField(textField: UITextField!, shouldChangeCharactersInRange range: NSRange, replacementString string: String!) -> Bool {
//you can check here which key has pressed in parameter 'string'
return true
}
我想在 iOS 应用程序中获取 UIKeyboard 的每个字母点击操作, swift 有可能吗?
如:
func textFieldShouldReturn(textField: UITextField) -> Bool {
...
}
但是在其他按钮上..没有创建自定义键盘
func textField(textField: UITextField!, shouldChangeCharactersInRange range: NSRange, replacementString string: String!) -> Bool {
//you can check here which key has pressed in parameter 'string'
return true
}