UISearchBarSearchField BackgroundView color

前端 未结 3 1280
南旧
南旧 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:12

    After a lot more search I found the correct answer that is working for me.

    if #available(iOS 11.0, *) {
            if let textfield = search.searchBar.value(forKey: "searchField") as? UITextField {
                textfield.textColor = UIColor.blue
    
                if let backgroundview = textfield.subviews.first {
                    backgroundview.backgroundColor = UIColor.white
                    backgroundview.layer.cornerRadius = 10;
                    backgroundview.clipsToBounds = true;
                }
            }
    
      }
    

提交回复
热议问题