如何更改UISearchBar搜索文本的颜色?

如何更改a的文本颜色UISearchBar

回答:

您必须访问UITextFieldUISearchBar内部。您可以通过使用valueForKey("searchField")

var textFieldInsideSearchBar = yourSearchbar.valueForKey("searchField") as? UITextField

textFieldInsideSearchBar?.textColor = yourcolor

let textFieldInsideSearchBar = yourSearchbar.value(forKey: "searchField") as? UITextField

textFieldInsideSearchBar?.textColor = yourcolor

以上是 如何更改UISearchBar搜索文本的颜色? 的全部内容, 来源链接: utcz.com/qa/411994.html

回到顶部