iPhone perform action when UITextField / UISearchBar's clear button is pressed

不羁岁月 提交于 2019-12-13 12:23:45

问题


Is it possible to gain access to a delegate method that will allow additional actions to be performed when the "clear" button is pressed on a UITextField / UISearchBar?

Thanks


回答1:


See: UITextFieldDelegate Protocol Reference

If you set your view controller as the delegate for your text field (can be done in interface builder), you can use:

- (void)clearSearchTextField
{
  ...
}

- (BOOL)textFieldShouldClear:(UITextField *)textField
{
  if (textField == self.searchTextField) [self clearSearchTextField];
  return YES;
}



回答2:


For Swift 3:

To perform an action when the "clear" button is pressed on a UITextField

func textFieldShouldClear(_ textField: UITextField) -> Bool {
    if textField == yourTextFieldName {
        // do some action
    }
    return true
}



回答3:


For a UISearchBar you will want to implement func searchBar(searchBar: UISearchBar, textDidChange searchText: String).

This is triggered before func searchBarTextDidBeginEditing(searchBar: UISearchBar) and before func searchBar(searchBar: UISearchBar, shouldChangeTextInRange range: NSRange, replacementText text: String) -> Bool as well.

You implementation should look something like this:

func searchBar(searchBar: UISearchBar, textDidChange searchText: String) {
        if searchText == "" {
            //Code to execute when search is cleared
        }
    }



回答4:


When you clear the text field several events will happen that you will have access to through either the UISearchDisplayDelegate or the UISearchBarDelegate such as searchBar:textDidChange and searchDisplayController:shouldReloadTableForSearchString

This will also cause the search table to hide so it will trigger

searchDisplayController:willHideSearchResultsTableView  
searchDisplayController:didHideSearchResultsTableView

When the search table will hide you can check if the search text is empty and then do whatever you need to do.




回答5:


See my answer here: https://stackoverflow.com/a/3852509/91458 – it’s for a searchBar but should apply to a textField as well.



来源:https://stackoverflow.com/questions/2404940/iphone-perform-action-when-uitextfield-uisearchbars-clear-button-is-pressed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!