美文网首页
swift textView切换自定义键盘

swift textView切换自定义键盘

作者: 陈水寒 | 来源:发表于2017-11-07 10:51 被阅读26次

    聊天软件或者其他发送信息需要添加表情符号的时候,需要切换键盘,textview下面有个属性inputview,给inputview赋值空就代表系统键盘,赋值自定义的view就会弹出自定义键盘,切换方法如下

    // 收起键盘
    textView.resignFirstResponder()
            
    // 改变键盘
    textView.inputView = textView.inputView != nil ? nil : UISwitch()
            
    // 弹出键盘
    textView.becomeFirstResponder()
    

    相关文章

      网友评论

          本文标题:swift textView切换自定义键盘

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