Custom clear button in UISearchBar text field

前端 未结 6 956
南笙
南笙 2020-12-06 19:12

I tried:

UITextField *searchtextfield = [searchBar.subviews objectAtIndex:1];
    UIButton *cButton = [UIButton buttonWithType:UIButtonTypeCustom];
    cButt         


        
6条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-06 19:56

    If you want to set a custom clear button in a UISearchBar try this:

    [[UISearchBar appearance] setImage:[UIImage imageNamed:@"MyClearButton.png"] forSearchBarIcon:UISearchBarIconClear state:UIControlStateNormal];
    

    Don't forget to set an image for UIControlStateHighlighted

    [[UISearchBar appearance] setImage:[UIImage imageNamed:@"HighlightedClearButton.png"] forSearchBarIcon:UISearchBarIconClear state:UIControlStateHighlighted];
    

提交回复
热议问题