如何更改UISearchBar搜索文本的颜色?
如何更改a的文本颜色UISearchBar
?
回答:
您必须访问UITextField
UISearchBar内部。您可以通过使用valueForKey("searchField")
var textFieldInsideSearchBar = yourSearchbar.valueForKey("searchField") as? UITextFieldtextFieldInsideSearchBar?.textColor = yourcolor
let textFieldInsideSearchBar = yourSearchbar.value(forKey: "searchField") as? UITextFieldtextFieldInsideSearchBar?.textColor = yourcolor
以上是 如何更改UISearchBar搜索文本的颜色? 的全部内容, 来源链接: utcz.com/qa/411994.html