SearchBar, how to change text color?

2020-07-18 09:51发布

Here's what my search bar looks like

My search bar has default gray text, but I want it to be white text. I can't figure out how to use swift to change the scope bar text color, and you are unable to do it from storyboard. The closest I've found is

searchBarOutlet.setScopeBarButtonTitleTextAttributes([NSForegroundColorAttributeName: UIColor.whiteColor()], forState:UIControlState.Normal)

but alas this won't work either. Any ideas?

4条回答
老娘就宠你
2楼-- · 2020-07-18 10:10

In my case for swift 3.0

(mySearchBar.value(forKey: "searchField") as? UITextField)?.textColor = UIColor.white

查看更多
Bombasti
3楼-- · 2020-07-18 10:17

Its a little hard to access the Textfield inside the UISearchbar.

This is how it works:

for subView in self.searchBarOutlet.subviews
    {
        for secondLevelSubview in subView.subviews
        {
            if (secondLevelSubview.isKindOfClass(UITextField))
            {
                if let searchBarTextField:UITextField = secondLevelSubview as? UITextField
                {
                    //set the color here like this:
                    searchBarTextField.textColor = UIColor.redColor()
                    break;
                }

            }
        }
    }

Shorter solution:

var textFieldInsideSearchBar = yourSearchbar.valueForKey(“searchField”) as? UITextField 
textFieldInsideSearchBar?.textColor = yourcolor
查看更多
可以哭但决不认输i
4楼-- · 2020-07-18 10:22
// My preferred way of accessing searchField

if let searchTextField = self.searchBar.valueForKey("searchField") as? UITextField {

  searchTextField.textAlignment = NSTextAlignment.Left

}
查看更多
仙女界的扛把子
5楼-- · 2020-07-18 10:29

Swift 3

UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]).textColor = UIColor.white
查看更多
登录 后发表回答