iOS 11 UISearchBar background color

后端 未结 5 681
南旧
南旧 2021-02-13 19:25

I understand that this question has been asked many, many times on SO. However, as Apple does best, with the release of iOS 11, they seem to ha

5条回答
  •  佛祖请我去吃肉
    2021-02-13 20:05

    I think you may be looking for this, right? But I've it in Swift :(

    @IBOutlet weak var sbSearchBar: UISearchBar!
    
    if let textfield = sbSearchBar.value(forKey: "searchField") as? UITextField {
        textfield.textColor = UIColor.blue
        textfield.backgroundColor = UIColor.yellow
    }
    

    Here is result:

    enter image description here

提交回复
热议问题