How to customize appearance of UISearchBar

后端 未结 9 1707
盖世英雄少女心
盖世英雄少女心 2020-12-04 09:53

I want to customize the search bar, I mean the white box. Can I do it? Is there some documentation about that? Is there a way to hide the white box, but not the letters. Can

相关标签:
9条回答
  • 2020-12-04 10:32

    You could change the background of UISearchBar

    Customize a UISearchBar background

    How to Control UISearchBar Background Color

    0 讨论(0)
  • 2020-12-04 10:32

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

    0 讨论(0)
  • 2020-12-04 10:39

    Here is some common properties you can change to customize UISearchBar:

    0 讨论(0)
提交回复
热议问题