UITextField 限制输入字数

UITextField 限制输入字数

UITextField 限制输入字数


本文转载自 http://www.cnblogs.com/supercheng/archive/2012/11/22/UITextField.html


方法一

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

    if (range.location>= 11)

        return NO;

    returnYES;

}

方法二

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

    NSString * toBeString = [textField.text stringByReplacingCharactersInRange:range withString:string];

    if (toBeString.length > 11) {

        textField.text = [toBeString substringToIndex:11];

        return NO;

    }

    returnYES;

}

 

当前光标位置 range.location 

已选文字长度 range.length 

输入文字长度 textView.text.length 

已有文字长度 text.length

 

两个方法都可以使用,结果没有差异

有疑问的话可以进IOS中高级开发群:118623167

你可能感兴趣的:(iOS应用)