我尝试使用UIAppearance并将这行代码放在AppDelegate中:
[[UITextFIEld appearance] setKeyboardAppearance:UIKeyboardAppearanceAlert];
但我在控制台上得到的是以下内容:
[UISearchbarTextFIEld _UIAppearance_setKeyboardAppearance:]: unrecognized selector sent to instance 0xa1897e0
任何想法如何解决这个问题?
解决方法 UIAppearance仅适用于专门用宏UI_APPEaraNCE_SELECTOR标记的方法兼容,不幸的是keyboardAppearance不是其中之一.得到你想要的最好的方法是继承UITextFIEld并设置keyboardAppearance = UIKeyboardAppearanceAlert;在子类的init和initWithFrame:方法中.然后专门使用您的类,无论您在应用程序中使用UITextFIEld.
总结以上是内存溢出为你收集整理的ios – 如何为整个App设置UIKeyboard-Style?全部内容,希望文章能够帮你解决ios – 如何为整个App设置UIKeyboard-Style?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)