服务器之家

服务器之家 > 正文

TextField和TextView限制输入字数长度

时间:2021-01-24 15:25     来源/作者:哈喽mybaby

TextFieldTextView限制输入长度的具体实现方法,供大家参考,具体内容如下

TextField的限制代理方法
 只需要在这个代理方法里面code这样的代码就可以了 16 是长度可以自己设置

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
 NSInteger existedLength = textField.text.length;
 NSInteger selectedLength = range.length;
 NSInteger replaceLength = string.length;
 NSInteger pointLength = existedLength - selectedLength + replaceLength;
 //超过16位 就不能在输入了
 if (pointLength > 16) {
  return NO;
 }else{
  return YES;
 }
 
}

TextView的限制代理方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString*)text
{
 //这个判断相当于是textfield中的点击return的代理方法
 if ([text isEqualToString:@"\n"]) {
  [textView resignFirstResponder];
  return NO;
 }
 
 //在输入过程中 判断加上输入的字符 是否超过限定字数
 NSString *str = [NSString stringWithFormat:@"%@%@", textView.text, text];
 if (str.length > 500)
 {
  textView.text = [textView.text substringToIndex:500];
  return NO;
 }
 return YES;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
返回顶部