我想給搜索欄設置圖片,通過搜索欄的子視圖UISearchBarBackground
可以實現,但是不能給搜索欄的取消按鈕設置圖片,我獲取到搜索欄的子視圖設置按鈕的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;
}
}