iOS 11 customise search bar in navigation bar

前端 未结 7 1124
自闭症患者
自闭症患者 2020-11-28 19:26

I want to change the color of the text and icon in the iOS 11 searchbar when it is embedded in the navigation bar. So placeholder text, search text and search icon.

相关标签:
7条回答
  • 2020-11-28 20:22

    Set Search Text Color

    (UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]) ).defaultTextAttributes = [NSForegroundColorAttributeName: UIColor.white]
    

    Set Search Placeholder Color

    (UITextField.appearance(whenContainedInInstancesOf: [UISearchBar.self]) ).attributedPlaceholder = [NSForegroundColorAttributeName: UIColor.white]
    
    0 讨论(0)
提交回复
热议问题