How to customize appearance of UISearchBar

后端 未结 9 1787
盖世英雄少女心
盖世英雄少女心 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条回答
  •  -上瘾入骨i
    2020-12-04 10:14

    use the below code to transparent your searchbar

    // Set it to your UISearchBar appearance
    
    [[UISearchBar appearance] setBackgroundColor:[UIColor clearColor]];
    [[UISearchBar appearance] setBackgroundImage:backgroundImage];
    [[UISearchBar appearance] setSearchFieldBackgroundImage:searchFieldImage 
                                                    forState:UIControlStateNormal];
    

提交回复
热议问题