开发者

Keyboard is not responding after implementing UISearchBar delegate method

开发者 https://www.devze.com 2023-04-03 01:41 出处:网络
I have an UISearchBar which i implemented in my viewDidLoad: by code. I have also set the UISearchBarDelegate.

I have an UISearchBar which i implemented in my viewDidLoad: by code. I have also set the UISearchBarDelegate.

Now i want to restrict the user from entering more than 5 chracter So i implement this delegate method

- (BOOL)searchBar:(UISearchBar *)searchBar shouldChangeTextInRange:(NSRange)range replacem开发者_JAVA百科entText:(NSString *)text
{

    NSLog(@"shouldChangeTextInRange");

    if (searchBar.text.length >= 5)
        return NO;

    return YES;
}

Its working fine.

The problem is when i typed upto 5 chracters & try to use the keyboard Backspace character, it is not working.

Also now if i pressed Search button in keyboard the searchBarSearchButtonClicked: is not getting called.

I am currently using

XCode version :3.2.5

iOS SDK :4.2


You should do your test on the new text length (then length of the text that you will have if the suggested text change is applied), not the actual text length.

For that, you first need to compute the new text :

- (BOOL)searchBar:(UISearchBar *)searchBar shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
    if ([text isEqualToString:@"\n"])
        return YES; // accept validation button

    NSString* newText = [searchBar.text stringByReplacingCharactersInRange:range withString:text];

    if (newText.length >= 5)
        return NO;

    return YES;
}


You can't use backspace because of your code. after typing 5 characters, your searchBar is stuck. Use it instead :

    if ([textField.text length] + [string length] - range.length > 5) {
        return NO;
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号