0

I am calling becomeFirstResponder, and showing the keyboard with it.

[inputTextField becomeFirstResponder];

However, it shows the custom keyboard that is installed on test device. Is there a way to show iOS Standard Keyboard for Number Pad?

mamba4ever
  • 2,662
  • 4
  • 28
  • 46

1 Answers1

0

From the answer list originally at: Prevent custom keyboard in textfield

- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString *)extensionPointIdentifier {
    if ([extensionPointIdentifier isEqualToString: UIApplicationKeyboardExtensionPointIdentifier]) {
        return NO;
    }
    return YES;
}
Brad Brighton
  • 2,179
  • 1
  • 13
  • 15