Hide UISearchBar clear text button

前端 未结 15 1788
时光说笑
时光说笑 2020-12-31 05:31

I would like to know how to hide or not display the UISearchBar cross that appears in the textField fo the UISearchBar

I have

15条回答
  •  抹茶落季
    2020-12-31 05:58

    Try this:

    - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText {
        UITextField *textField = [searchBar valueForKey:@"_searchField"];
        textField.clearButtonMode = UITextFieldViewModeNever;
    
    }
    

提交回复
热议问题