UISearchBar背景图像显示边缘的黑色

时间:2015-08-12 18:30:52

标签: ios iphone uisearchbar

我正在尝试在UISearchBar上应用背景图像。它已成功应用,但在搜索栏的四个边缘显示黑色。 SearchBar

以下是我正在使用的代码:

[_dashboardSearch setSearchFieldBackgroundImage:[UIImage imageNamed:@"search-bar.png"] forState:UIControlStateNormal];
    [_dashboardSearch setBackgroundColor:[UIColor clearColor]];
    [_dashboardSearch setImage:[UIImage imageNamed:@"search_icon.png"] forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];

1 个答案:

答案 0 :(得分:0)

得到了解决。我在UISearchBar中将黑色设置为UITexfield背景。下面的代码行写错了:

[(UITextField *)subSubView setBackgroundColor:[UIColor blackColor]];