I saw this SO question here: Can I shade the (black) UIKeyboard? If so, how? , where the main answer tells you that you can hack, but it can make your application reject Apple. This should not be true, since I saw other iPhone apps (the main ones being Clear) that have a black UIKeyboard. How it's done?
Clear screenshot for reference:
try it
[(UITextField *)mySubView setKeyboardAppearance:UIKeyboardAppearanceAlert];
or just add setKeyboardAppearance:UIKeyboardAppearanceAlert accordingly depending on how you configured it!
setKeyboardAppearance:UIKeyboardAppearanceAlert
Is this the style [textView setKeyboardAppearance:UIKeyboardAppearanceAlert]; ? Otherwise, as indicated. This is not possible without hacking podcasts. Of course, you can still customize your own complete input file.
[textView setKeyboardAppearance:UIKeyboardAppearanceAlert];
Starting with iOS 7, you can use UIKeyboardAppearanceDark
UIKeyboardAppearanceDark
So for example:
self.textField.keyboardAppearance = UIKeyboardAppearanceDark
Source: https://habr.com/ru/post/1400480/More articles:XSD for XML with import - standardsHow to use dependent pairs - dependent-typeHow to pass a dictionary as a parameter when I do not need dictionary types? - dictionaryHow to handle mouseEvent transparently in AS3? - event-handlingWhy is the concept of MVC important? - architectureCreating a Movieclip that is masked, you can click and respond to MouseEvents - flashWord Blocks in TMemo - delphiaction script 3 - is it possible to trigger the click event only when the mouse clicks on a part of the image? - actionscript-3Creating a Movieclip that installs as a mask is clickable and responds to MouseEvents - flashQTableView Column Width - c ++All Articles