欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

实时监控UITextField的输入长度,包括联想字符

程序员文章站 2022-04-06 08:21:54
...

由于限制UITextField的长度的时候,不能限制联想字符,解决方案如下:

在viewDidLoad方法中注册Observer:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldDidChange:) name:@"UITextFieldTextDidChangeNotification" object:_textFieldName];

在dealloc方法中移除Observer:

[[NSNotificationCenter defaultCenter] removeObserver:self name:@"UITextFieldTextDidChangeNotification" object:_textFieldName];

然后实现下面的代理方法

- (void)textFieldDidChange:(NSNotification *)notification{
    UITextField *textField = (UITextField *)notification.object;
    if (textField == _textFieldName) {
        NSUInteger wordLen = textField.text.length;
        if (wordLen > 19) {
            textField.text = [textField.text substringToIndex:19];
            wordLen = 19;
        }
    }
}