切换到数字键盘时,我想使用自定义数字键盘。 如何实现这个功能? Apple不提供任何关于此的API吗?
谢谢。
答案 0 :(得分:0)
UITextInputMode类的更改通知
UITextInputCurrentInputModeDidChangeNotification
所以添加此通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardModeChange:) name:UITextInputCurrentInputModeDidChangeNotification object:nil];
我希望它对你有用。快乐的编码:)