When I hit the "clear" button (the one that appears when editing) on the tableView search, I was trying to get the keyboard to disappear. How can I detect when the "clear" button is clicked, so I can resign the firstResponder? I already tried this in the textDidChange method:

if (SearchBar.text == @"") {
    [SearchBar resignFirstResponder];
    NSLog(@"clear called");
}

which did not work...and also tried:

 if (SearchBar.text == nil) {
    [SearchBar resignFirstResponder];
    NSLog(@"clear called");
}

Neither methods show that they were called. Any ideas?

EDIT: Now resignFirstResponder does not seem to be working. The keyboard stays on screen. What's am I doing wrong?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

For string comparision u should use

if([SearchBar.text isEqualToString: @""])
link|improve this answer
ur code should be in – searchBar:textDidChange: – KingofBliss Dec 2 '10 at 4:37
Yes it is in that method. Thanks, this did the trick. Now for some reason calling resignFirstResponder doesn't work. Oh well. :) – sudo rm -rf Dec 2 '10 at 4:40
feedback

You can try watching the text property of the search bar by registering for a KVO notification:

[self.searchBar addObserver:self forKeyPath:@"text" options:NSKeyValueObservingOptionNew context:NULL];

and then implementing:

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
  if (object == self.searchBar && [keyPath isEqualToString:@"text"]) {
    // Handle the new value of self.searchBar.text
  }
}

Edit: nevermind, answered above =)

link|improve this answer
Well, that would work, but it's a little more complicated than it needs to be for what my purposes are. Thanks for trying to help, though! – sudo rm -rf Dec 2 '10 at 4:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.