UISearchBar完全自定义背景

时间:2013-08-20 15:42:24

标签: ios uisearchbar uiappearance

我正在尝试更改UISearchBar的外观以获得以下结果

Custom Search Bar http://imageshack.com/a/img194/3835/jhl7.png

我尝试使用UIAppearance方法,也删除了UISearchBarBackground,但似乎无法删除文本字段的边框。

我获得的最佳结果是:

actual search bar

问题不是放大镜,而是边框:)

1 个答案:

答案 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"];