我正在尝试更改UISearchBar的外观以获得以下结果
Custom Search Bar http://imageshack.com/a/img194/3835/jhl7.png
我尝试使用UIAppearance方法,也删除了UISearchBarBackground,但似乎无法删除文本字段的边框。
我获得的最佳结果是:
问题不是放大镜,而是边框:)
答案 0 :(得分:3)
尝试为搜索栏设置清晰的颜色:
[[UISearchBar appearance] setTintColor:[UIColor clearColor]];
或尝试:
UIImage *searchBg = [UIImage imageNamed:@"Search_Background.png"];
searchBg = [searchBg stretchableImageWithLeftCapWidth:10 topCapHeight:10]; //experiment with values
[[UISearchBar appearance] setSearchFieldBackgroundImage: [[UIImage imageNamed: @"background-search"];