TextView里限制输入字数的方法

时间:2022-03-15 11:15:09

一开始采用的方法是函数textView:shouldChangeTextInRange:replacementText:来进行判断:

  1. //键入Done时,插入换行符,然后执行addBookmark
  2. - (BOOL)textView:(UITextView *)textView
  3. shouldChangeTextInRange:(NSRange)range
  4. replacementText:(NSString *)text
  5. {
  6. //判断加上输入的字符,是否超过界限
  7. NSString *str = [NSString stringWithFormat:@"%@%@", textView.text, text];
  8. if (str.length > BOOKMARK_WORD_LIMIT)
  9. {
  10. textView.text = [textView.text substringToIndex:BOOKMARK_WORD_LIMIT];
  11. return NO;
  12. }
  13. return YES;
  14. }

但在使用中发现该方法在有联想输入的时候,根本无法对联想输入的词进行判断,然后尝试使用textViewDidChange:,验证可行:

#define MaxNumberOfDescriptionChars  100//textview最多输入的字数

/*由于联想输入的时候,函数textView:shouldChangeTextInRange:replacementText:无法判断字数,

因此使用textViewDidChange对TextView里面的字数进行判断

*/

- (void)textViewDidChange:(UITextView *)textView

{

//该判断用于联想输入

if (textView.text.length > MaxNumberOfDescriptionChars)

{

textView.text = [textView.text substringToIndex:MaxNumberOfDescriptionChars];

}

//还可输入的字数

self.countLabel.text=[NSString stringWithFormat:@"%lu",MaxNumberOfDescriptionChars-textView.text.length];

}