服务器之家

服务器之家 > 正文

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

时间:2021-03-31 16:29     来源/作者:potato512

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

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部