gpt4 book ai didi

keyboard - iOS7上的黑键盘

转载 作者:行者123 更新时间:2023-12-04 16:39:50 24 4
gpt4 key购买 nike

在我的代码中,我似乎无法让键盘默认为黑色。我已经尝试了其他帖子中的解决方案,但没有成功。不确定我是否遗漏了什么。我希望它适用于所有 View Controller ,所以我想把它放在我的应用程序委托(delegate)中。这是我认为应该可以解决问题的代码,但它对我不起作用。

textfield.keyboardAppearance = UIKeyboardAppearanceDark;

最佳答案

我不知道你的变量“textfield”是什么,但如果它是 UITextField 的一个实例,那么它只会为那个特定的 textField 实例设置键盘外观。

另一方面,如果您想为整个应用程序中的所有 UITextFields 设置它,请改用:

[[UITextField appearance] setKeyboardAppearance:UIKeyboardAppearanceDark];

在您的 appstart 之后的某个地方,例如应用程序:didFinishLaunchingWithOptions:在您的应用程序委托(delegate)中。

关于keyboard - iOS7上的黑键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19789780/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com