gpt4 book ai didi

iphone - UISearchBar 键盘外观

转载 作者:行者123 更新时间:2023-11-28 18:39:41 25 4
gpt4 key购买 nike

根据这个问题,我们可以更改 iOS 中任何 UITextField 的键盘外观 Can the alert keyboard be used for any text field on iOS?

但是 UISearchBar 呢?有没有办法,因为 [searchBarInstance setKeyboardAppearance:UIKeyboardAppearanceAlert]; 不起作用,因为 UISearchBar 缺少这种方法。

最佳答案

你可以这样做,

for(UIView *subView in searchBar.subviews)
if([subView isKindOfClass: [UITextField class]])
[(UITextField *)subView setKeyboardAppearance: UIKeyboardAppearanceAlert];

参见 iPhone UISearchBar & keyboardAppearance

关于iphone - UISearchBar 键盘外观,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12759253/

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