iOS 设置textfield的最大文本长度

Posted tryFighting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 设置textfield的最大文本长度相关的知识,希望对你有一定的参考价值。

//在现实开发中  需要控制文本输入长度 并实时做短信验证,代码如下

[self.textField addTarget:self action:@selector(codeChange:) forControlEvents:UIControlEventEditingChanged];

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

    

    if (textField == self.textField) {

        if (range.length == 1 && string.length == 0) {

            return YES;

        }

        else if (self.textField.text.length >= 6) {

            self.textField.text = [textField.text substringToIndex:6];

            return NO;

        }

    }

    return YES;

}

//注意:事件类型是:`UIControlEventEditingChanged`

-(void)codeChange:(id)sender{

    if ([CommonTool isBlank:self.code_id]) {

        [MBProgressHUD showError:@"请先获取验证码"];

        return;

    }

    UITextField *target=(UITextField*)sender;

    if (target.text.length == 6) {

        ///执行相对应的操作及网络请求

    }

}

以上是关于iOS 设置textfield的最大文本长度的主要内容,如果未能解决你的问题,请参考以下文章

如何在按钮单击时在 SwiftUI 中为 TextField 设置文本

设置UITextField的最大字符长度

textField 最大长度和邮政编码验证

在 Flutter 中的 TextField 下显示错误

限制文本字段长度

当textfield为空时禁用按钮等待其他文本字段中的任何更改