美文网首页
强制弹出系统键盘(禁用搜狗等第三方键盘)

强制弹出系统键盘(禁用搜狗等第三方键盘)

作者: Happy晓哥 | 来源:发表于2017-06-06 11:15 被阅读66次

在AppDelegate中添加如下代码,即可.
强制使用系统键盘

/**< 强制使用系统键盘,屏蔽一切第三方键盘 */
- (BOOL)application:(UIApplication *)application shouldAllowExtensionPointIdentifier:(NSString *)extensionPointIdentifier{
    if ([extensionPointIdentifier isEqualToString:@"com.apple.keyboard-service"]) {
        return NO;
    }
    return YES;
}

相关文章

网友评论

      本文标题:强制弹出系统键盘(禁用搜狗等第三方键盘)

      本文链接:https://www.haomeiwen.com/subject/vsegfxtx.html