图像用于取消的UISearchBar [重复]的按钮(Image for Cancel button

2019-07-17 12:51发布

可能重复:
造型在一个UISearchBar取消按钮

我想设置图像搜索栏,我可以为使用搜索栏的子视图searchabar形象UISearchBarBackground ,但我不能够设置图像取消搜索栏的按钮。 我得到的搜索栏子视图UINavigationButton的按钮,但我硝基甲苯诀窍设置图像UINavigationButton 。 谁能帮我?

先感谢您

Answer 1:

试试这个代码...

    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;
        }
    }


文章来源: Image for Cancel button of UISearchbar [duplicate]