键盘夜间模式

作者: iStig | 来源:发表于2015-09-08 11:10 被阅读492次

    夜间模式:键盘问题
    夜间模式功能,除了UI层夜间切换外,对系统键盘等也需要切换,在原生UI上,调用键盘都可以通过输入框的.keyboardAppearance属性修改
    UITextView*textView = [[UITextViewalloc] initWithFrame:self.view.bounds]; textView.keyboardAppearance = UIKeyboardAppearanceDark;

    但对于webview的夜间模式我们需要用一个runtime的方法,具体看这个链接
    http://stackoverflow.com/questions/19961103/uikeyboardappearance-in-uiwebview

    相关文章

      网友评论

        本文标题:键盘夜间模式

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