iOS 11 customise search bar in navigation bar

前端 未结 7 1160
自闭症患者
自闭症患者 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:03

    Put

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

    and

    UISearchBar.appearance().tintColor = UIColor.white in the AppDelegate.

    Alternatively, put them both in [UIViewController viewDidLoad:]

提交回复
热议问题