Search code examples
iosselectoruisearchbaruisearchbardelegate

Perform action on UISearchBar when Keyboard is down and the x has been tapped


I have a UITableView with a UISearchBar on top and have a specific requirement that isn't working.

I have no Cancel button on my UISearchBar (showsCancelButton = NO) so I rely completely on the x within the UISearchBar to cancel the existing search. I rely on the Keyboard's "Search" button to dismiss the keyboard (though it's called Done in my case).

When a user searches in my app, I'm disabling a navigation bar button item because it gives a bad user experience, and only when the search has cancelled does the user get the navigation bar button item back. That's all working.

I have one particular scenario though that I cannot get around.

1) Tap on the Search Bar to enter Text

2) Click DONE on the Keyboard and the Keyboard will disappear

3) With the keyboard resigned, the x remains in the UISearchBar

4) Tap the x in the UISearchBar and the text in the SearchBar disappears and the view refreshes

5) At this point, the navigation bar button should be enabled again, but it's not.

Code:

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
    self.timelineSearchBar.showsCancelButton = NO;
    if ([searchText length] == 0)
    {
        [self.timelineSearchBar performSelector:@selector(resignFirstResponder)
                    withObject:nil
                  afterDelay:0];
    }

I know that the code above is meant to dismiss the keyboard when the x is pressed which is fine.

In my case, the keyboard is already resigned, so I want the tapping of the x to just re-enable the navigation bar item.

    self.addButton.enabled = YES; 

in that if statement above doesn't do anything at all and the navigation bar item is still disabled.

I've even tried in that if statement :

[self.timelineSearchBar performSelector:@selector(enableAdd)
                    withObject:nil
                  afterDelay:0];

- (void)enableAdd
{
    self.addButton.enabled = YES;
}

but that crashes saying searchBar does not respond to that enableAdd selector.

I've done a breakpoint and see that the if statement above does evaluate to true when I tap the x and it goes into the statement, it "runs" the code to enable the button, but it never happens.

Also my end editing method is:

- (void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
{
    [searchBar setShowsCancelButton:NO animated:YES];
    self.addButton.enabled = YES;
}

UPDATE: I've tried the link here http://engineeringtheworld.wordpress.com/2011/04/11/detecting-when-clear-is-clicked-in-uisearchbar-x-button/ with no success - the textField's shouldClear method doesn't get called. I'm using iOS 7 so perhaps there's another way to embed the views with textFields? This is very possibly the right approach, but it's not working with my code because the for statement in that sample never gets evaluated as true (I put in an NSLog).

UPDATE 2: From if the if statement above, I called the searchBarCancelButton method and I had extreme loops being caused, so that of course wasn't the right approach:

[self performSelector:@selector(searchBarCancelButtonClicked:) withObject:self.timelineSearchBar afterDelay: 0];

Any guidance on this would be really appreciated. I know I'm missing a key step but I just can't quite figure it out.


Solution

  • The problem is that when tapping the X button, searchBar:textDidChange: is called before searchBarShouldBeginEditing:

    i.e. here is the call flow: searchBar:textDidChange: -> searchBarShouldBeginEditing: -> searchBarTextDidBeginEditing: -> searchBarTextDidEndEditing:

    textDidChange is setting enabled to YES, but then shouldBeginEditing is disabling it again. This works perfectly for me:

    -(void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
    {
        self.addButton.enabled = NO;
    }
    
    -(void)searchBarTextDidEndEditing:(UISearchBar *)searchBar
    {
        if(searchBar.text.length == 0){
            self.addButton.enabled = YES;
        }
    }
    
    -(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
    {
        if ([searchText length] == 0)
        {
            [searchBar performSelector:@selector(resignFirstResponder) withObject:nil afterDelay:0];
        }
    }
    
    -(void)searchBarSearchButtonClicked:(UISearchBar *)searchBar
    {
        self.addButton.enabled = [searchBar.text length] == 0;
        [searchBar resignFirstResponder];
    }