可能重复:
造型在一个UISearchBar取消按钮
我想设置图像搜索栏,我可以为使用搜索栏的子视图searchabar形象UISearchBarBackground
,但我不能够设置图像取消搜索栏的按钮。 我得到的搜索栏子视图UINavigationButton
的按钮,但我硝基甲苯诀窍设置图像UINavigationButton
。 谁能帮我?
先感谢您
可能重复:
造型在一个UISearchBar取消按钮
我想设置图像搜索栏,我可以为使用搜索栏的子视图searchabar形象UISearchBarBackground
,但我不能够设置图像取消搜索栏的按钮。 我得到的搜索栏子视图UINavigationButton
的按钮,但我硝基甲苯诀窍设置图像UINavigationButton
。 谁能帮我?
先感谢您
试试这个代码...
for (UIView *searchbuttons in searchBar.subviews)
{
if ([searchbuttons isKindOfClass:[UIButton class]])
{
UIButton *cancelButton = (UIButton*)searchbuttons;
cancelButton.enabled = YES;
[cancelButton setBackgroundImage:[UIImage imageNamed:@"yourImageName"] forState:UIControlStateNormal];
break;
}
}