iOS如何捕捉切换标准键盘类型到数字键盘的事件?

时间:2012-05-14 06:46:30

标签: ios events keypad

切换到数字键盘时,我想使用自定义数字键盘。 如何实现这个功能? Apple不提供任何关于此的API吗?

谢谢。

1 个答案:

答案 0 :(得分:0)

UITextInputMode类的更改通知

UITextInputCurrentInputModeDidChangeNotification

所以添加此通知

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardModeChange:) name:UITextInputCurrentInputModeDidChangeNotification object:nil];

我希望它对你有用。快乐的编码:)