键盘夜间模式

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

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

你可能感兴趣的:(键盘夜间模式)