iPhone UISearchBar & keyboardAppearance

后端 未结 4 1985
说谎
说谎 2020-12-30 11:07

When the keyboard appears, I want to set the

keyboardAppearance = UIKeyboardAppearanceAlert

I\'ve checked the documentation and it looks l

4条回答
  •  误落风尘
    2020-12-30 11:26

    The best way that I found to do this, if you want to do it throughout your app, is to use Appearance on UITextField. Put this in your AppDelegate on launch.

    [[UITextField appearance] setKeyboardAppearance:UIKeyboardAppearanceDark];
    

提交回复
热议问题