iOS 11 UISearchBar in UINavigationBar

后端 未结 7 1041
有刺的猬
有刺的猬 2020-12-04 17:15

I want to place a search bar in the new navigation bar with the new iOS 11 large titles. However, the color of the search bar is automatically applied by iOS and I can\'t ch

7条回答
  •  时光说笑
    2020-12-04 17:20

    This is the code I used to make the search bar white:

    if let textfield = searchController.searchBar.value(forKey: "searchField") as? UITextField {
                if let backgroundview = textfield.subviews.first {
                    backgroundview.backgroundColor = UIColor.init(white: 1, alpha: 1)
                    backgroundview.layer.cornerRadius = 10
                    backgroundview.clipsToBounds = true
                }
            }
    

提交回复
热议问题