gpt4 book ai didi

iphone - UISearchBar范围栏色调颜色问题

转载 作者:行者123 更新时间:2023-12-01 18:25:34 25 4
gpt4 key购买 nike

在uisearchbar和范围栏上使用时,范围栏的色彩在iOS 4.3中没有更新。在其余的iOS版本中,它的工作正常。

最佳答案

for (id subview in yourSearchDisplayController.searchBar.subviews )
{
if([subview isMemberOfClass:[UISegmentedControl class]])
{
UISegmentedControl *scopeBar=(UISegmentedControl *) subview;
[scopeBar setSegmentedControlStyle:UISegmentedControlStyleBar];
[scopeBar setTintColor: [UIColor redColor]];//you can also set RGB color here
//scopeBar.tintColor = [UIColor blackColor];
}
}

另请参阅此链接中的我的答案以修改 UISearchBar组件

How to change inside background color of UISearchBar component on iOS

关于iphone - UISearchBar范围栏色调颜色问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14121071/

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