IOS中UITextView或UITextField字数限制的实现

时间:2022-09-19 20:21:24

IOSUITextViewUITextField字数限制的实现

UITextView或UITextField字数限制,输入时的限制,复制粘贴时的限制

字数限制有三种方法

在代理方法

?
1
“- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string”

?
1
“- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text”

中实现两种方法

方法1(只能在输入时限制,复制粘贴时无法限制)

?
1
2
3
4
5
if (range.location > MaxCharacterNumber - 1)
{
  textField.text = [textField.text substringToIndex:MaxCharacterNumber];
  return NO;
}

方法2(输入及复制粘贴时均可限制)

?
1
2
3
4
5
6
NSString *temp = [textField.text stringByReplacingCharactersInRange:range withString:string];
if (temp.length > MaxCharacterNumber)
{
  textField.text = [temp substringToIndex:MaxCharacterNumber];
  return NO;
}

在代理方法

?
1
“- (void)textViewDidChange:(UITextView *)textView”

中实现一种方法

方法3(复制粘贴时均可限制)

?
1
2
3
4
5
6
NSString *textString = textView.text;
if (textString.length > MaxCharacterNumbers + 1)
{
  textView.text = [textString substringToIndex:MaxCharacterNumbers];
  return;
}

注意:

?
1
“NSString *temp = [textField.text stringByReplacingCharactersInRange:range withString:string];”

为字符范围替换为指定的字符串,返回新的字符串。

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/potato512/article/details/32991643