gpt4 book ai didi

iphone - 搜索栏的 iOS 色调文本字段背景

转载 作者:行者123 更新时间:2023-11-29 13:24:51 25 4
gpt4 key购买 nike

在 iOS(支持 5.x+)中,将 UISearchBar 文本字段的白色背景颜色更改为不同颜色的最简单方法是什么?它没有 tintColor 属性。

最佳答案

你可以试试这个方法,

[searchBar setSearchFieldBackgroundImage: forState:];

在 iOS 5 之前的版本中,您可以将类别用作,

@implementation UISearchBar (BackgroundColor)

- (UITextField *)field {
// HACK: This may not work in future iOS versions
for (UIView *subview in self.subviews) {
if ([subview isKindOfClass:[UITextField class]]) {
return (UITextField *)subview;
}
}
return nil;
}

- (void)setTextBackgroundColor:(UIColor *)color {
self.field.backgroundColor = color;
}

@end

关于iphone - 搜索栏的 iOS 色调文本字段背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13425307/

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