iOS how to catch event of switching standard keyboard type to number keypad?

994 Views Asked by At

When switching to number keypad, I want to use my custom number keypad. How to realize this function? Apple don't give any APIs about this?

Thank you.

1

There are 1 best solutions below

1
On

there is a notification for change in UITextInputMode class

UITextInputCurrentInputModeDidChangeNotification

so add this notification

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

i hope it should work for u. happy coding :)