UISearchBarSearchField BackgroundView color

前端 未结 3 1235
南旧
南旧 2021-01-28 11:39

I am trying to change the background color of the search bar text field and i have searched and tried lots of solutions but those are not working.

So, please anyone can

3条回答
  •  离开以前
    2021-01-28 12:20

    Since iOS 13:

            if #available(iOS 13.0, *) {
                searchController.searchBar.searchTextField.backgroundColor = .red
                searchController.searchBar.searchTextField.tintColor = .yellow
            }
    

提交回复
热议问题