1

这让我发疯,我无法弄清楚搜索栏后面的黑线是什么。

我的视图层次结构是带有 SearchDisplayController 的 UINavigationController -> UITableViewController,我使用以下代码自定义搜索栏的外观:

[[UISearchBar appearance] setImage:[ApplicationStyle searchBarIconImage] forSearchBarIcon:UISearchBarIconSearch state:UIControlStateNormal];
[[UISearchBar appearance] setBackgroundImage:[ApplicationStyle searchBarImage]];
[[UISearchBar appearance] setSearchFieldBackgroundImage:[ApplicationStyle searchBarFieldImage] forState:UIControlStateNormal];

我用于背景的图像是 640 像素 x 88 像素,并且无论如何都不透明。任何想法这可能是什么?

在此处输入图像描述

4

1 回答 1

1

将搜索栏的clipsToBounds属性设置为YES

相关的SO问题:

于 2013-06-12T02:39:37.493 回答