How to change UISearchBar Placeholder and image tint color?

前端 未结 12 2357
暖寄归人
暖寄归人 2020-11-29 01:24

I\'ve been trying search results for hours, but I can\'t get this figured out. Perhaps it isn\'t possible. I\'m trying to change the tint color of the placeholder text and m

12条回答
  •  [愿得一人]
    2020-11-29 02:00

    You can change the color of the text without violating the private api rule:

    UILabel.appearanceWhenContainedInInstancesOfClasses([UITextField.self]).textColor = UIColor.whiteColor()
    

提交回复
热议问题