UISearchBar背景色在最小的searchBarStyle中不起作用

问题描述 投票:0回答:1

我有一个要设置白色背景的UISearchBar

由于要设置自定义边框,因此我为minimal选择了searchBarStyle值。

我可以通过将backgroundColorborderStyle设置为searchTextField来获得白色背景(此字段仅在iOS 13中可用,要在其他iOS版本中安全访问它,请检查here,如下所示:] >

searchBar.searchTextField.borderStyle = .none
searchBar.searchTextField.backgroundColor = .white

但是,这在iOS 13中不起作用

,当searchBarStyle值为minimal时,背景色似乎被忽略了,但是对于default / prominent样式正确地起作用。

我有一个要设置白色背景的UISearchBar。由于我要设置自定义边框,因此我选择了searchBarStyle的最小值。我可以通过设置...

ios uitextfield uisearchbar ios13
1个回答
0
投票

[试图弄清楚这一点时,我注意到在运行时使用searchBarStyle更改Reveal时正确应用了背景色。

© www.soinside.com 2019 - 2024. All rights reserved.