美文网首页
切换键盘

切换键盘

作者: 00d1ed2b53ae | 来源:发表于2018-11-08 13:54 被阅读317次

    使用了自定义键盘之后需要切换回系统自带的数字键盘

    - (void)changeKeyBoard{
    
        [_inputView becomeFirstResponder];
    
        _inputView.inputView = nil;
    
        [_inputView reloadInputViews];
    
      _inputView.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
    
    }
    
    

    相关文章

      网友评论

          本文标题:切换键盘

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