我使用以下代码来更改UISearchBar文本框的背景颜色。
[[UITextField appearanceWhenContainedIn:[UISearchBar class], nil] setDefaultTextAttributes:@{
NSForegroundColorAttributeName : [UIColor redColor],
NSFontAttributeName : [UIFont systemFontOfSize:15]
}];
但是这对我没有用,有人可以给出解决方案吗?先感谢了。