打开标准iOS键盘,而不是自定义键盘

时间:2017-07-17 11:14:15

标签: ios cocoa-touch uikeyboard uiresponder

我正在呼叫becomeFirstResponder,并用它显示键盘。

[inputTextField becomeFirstResponder];

但是,它显示了安装在测试设备上的自定义键盘。有没有办法显示数字键盘的iOS标准键盘?

1 个答案:

答案 0 :(得分:0)

来自最初的答案清单:Prevent custom keyboard in textfield

- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString *)extensionPointIdentifier {
    if ([extensionPointIdentifier isEqualToString: UIApplicationKeyboardExtensionPointIdentifier]) {
        return NO;
    }
    return YES;
}