I need to know the current type of keyboard. I set the instance variable to
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
However, testing showed that this is not always reliable due to the asynchronous nature of notifications.
I am wondering if someone can tell me how to determine the current type of keyboard inside the notification?
- (void)keyboardDidShow:(NSNotification *) {
Thanks.
source share