Hide UISearchBar clear text button

前端 未结 15 1792
时光说笑
时光说笑 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 06:15

    You can remove the clear text button for all UISearchBar instances:

    [UITextField appearanceWhenContainedInInstancesOfClasses:@[[UISearchBar class]]].clearButtonMode = UITextFieldViewModeNever;
    

提交回复
热议问题