How to override the cancel button in the UISearchBar

后端 未结 3 2019
难免孤独
难免孤独 2021-01-20 04:32

I am currently using the following method to stop the cancel button item from showing up in the search bar. I have a custom UIButton that I would like to use in

3条回答
  •  终归单人心
    2021-01-20 04:53

    You can hide your cancel button using this

    - (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
    {
        [searchBar setShowsCancelButton:NO animated:YES];
    }
    

提交回复
热议问题