Keyboard is not responding after implementing UISearchBar delegate method

一个人想着一个人 提交于 2019-12-02 07:13:59

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