My problem:
I'm trying to develop a custom keyboard for iOS 8. I got the buttons working and all that, but I would like to know how to do the different setups whether it is an iPad or an iPhone, and how to change the appearance when the keyboard should be light or dark. Can I get a .xib for everything, or is there some kind of trick to it?
Example:
.xib for iPad Keyboard Portrait Light
.xib for iPad Keyboard Landscape Light
.xib for iPad Keyboard Portrait Dark
.xib for iPad Keyboard Landscape Dark
.xib for iPhone Keyboard Portrait Light
and so on and so forth...
I guess you could check the appearance of the keyboard this way, and then change the images of the buttons accordingly, but then the different keyboard on iPad for example (different layout) is my problem...
if (self.textDocumentProxy.keyboardAppearance == UIKeyboardAppearanceDark) {
Thanks in advance.