UISearchBar cancel button color?

前端 未结 11 605
耶瑟儿~
耶瑟儿~ 2020-12-13 09:00

When I drop a UISearchBar into my view inside Interface Builder, and change its style to Black Opaque, the cancel button stays unfittingly blue / gray and doesn\'t become bl

11条回答
  •  粉色の甜心
    2020-12-13 09:21

    for iOS 10:

    UISearchBar.appearance().tintColor = UIColor.red //cancel button color
    UISearchBar.appearance().barTintColor = UIColor.blue //background button color
    

提交回复
热议问题