使用开关或按钮更改背景自定义键盘要在ViewController中显示

时间:2015-06-18 14:17:34

标签: ios swift ios8 xcode6

如何将图像添加到后台自定义键盘? 我想设置他们拥有背景的图像数量,用户可以选择适合他的图像

我使用" swift"

的语言

1 个答案:

答案 0 :(得分:0)

有人问before。 总之:

您需要更改要更改键盘的特定文本字段的keyboardAppearance。您可以通过不同的UIKeyboardAppearance执行此操作 - 有关您可以在Apple UITextInputTraits API中找到的不同类型的外观的更多信息。

即:

textField.keyboardAppearance = UIKeyboardAppearanceDark;

看起来像:

Dark appearance

textField.keyboardAppearance = UIKeyboardAppearanceLight;

看起来像:

enter image description here