gpt4 book ai didi

iphone - 如何更改ipad搜索栏背景颜色

转载 作者:行者123 更新时间:2023-12-03 20:45:01 28 4
gpt4 key购买 nike

我是 iPhone 新手,我想将搜索栏背景更改为清晰颜色,如何将其更改为清晰颜色。我的代码是:

UISearchBar *mySearchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(10, 550, 330, 42)];
mySearchBar.delegate = self;
mySearchBar.showsCancelButton = YES;
mySearchBar.placeholder=@"Search here..";
mySearchBar.tintColor=[UIColor clearColor];
[self.view addSubview:mySearchBar];

提前致谢:

最佳答案

因为搜索栏有一个默认 View ,我们删除这个 View ,那么背景颜色就清晰了

for (UIView *subview in mySearchBar.subviews) {
    if ([subview isKindOfClass:NSClassFromString(@"UISearchBarBackground")]) {
        [subview removeFromSuperview];
        break;
    }
}  

关于iphone - 如何更改ipad搜索栏背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8999322/

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