zoukankan      html  css  js  c++  java
  • 对textView 的输入个数进行判断

    - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text

    {
        /*
        if ([text isEqualToString:@" "])
        {
            [textView resignFirstResponder]; return NO;
        }else if([textView.text length] >= 30 && ![text isEqualToString:@""]){
            return NO;
        }
         
        return YES;
         */
    //    return YES;
        int _textMaxLength = 60;
        if (_textMaxLength == 0) {
            return YES;
        }
         
        void(^dealWithTexts)(void) = ^() {
            NSString *textInField = [textView.text substringToIndex:range.location];
            int inputedHanzi = [[textInField componentsMatchedByRegex:@"[u4e00-u9fa5]"] count];
            int inputedLength = textInField.length + inputedHanzi;
            int allowedLength = _textMaxLength - inputedLength;
            int length = 0;
            int stop = text.length;
            for (int i = 0; i < text.length; i++) {
                NSString *c = [text substringWithRange:NSMakeRange(i, 1)];
                if ([c isMatchedByRegex:@"[u4e00-u9fa5]"]) {
                    if (length + 2 > allowedLength) { stop = i; break; }
                    length += 2;
                } else {
                    if (length + 1 > allowedLength) { stop = i; break; }
                    length++;
                }
            }
            NSString *shouldAddedString = [text substringToIndex:stop];
            NSString *textShouldInField = [NSString stringWithFormat:@"%@%@",textInField,shouldAddedString];
            [textView performSelector:@selector(setText:) withObject:textShouldInField afterDelay:0.0];
        };
         
        if ( 1 == range.length && text.length == 0)
     {
      return YES; //删除
     }
        else if (range.length > 1) {
            dealWithTexts();
            return YES;
        }
     else
     {
      NSString * text2 = [textView.text stringByReplacingCharactersInRange:range withString:text];
            text2 = [text2 stringByReplacingOccurrencesOfRegex:@"[u4e00-u9fa5]" withString:@"##"];
            int symbol = [[text2 componentsMatchedByRegex:@"u2006"] count];
      if ( _textMaxLength > 0 && text2.length - symbol > _textMaxLength )
      {
                if (text.length > 1) {
                    dealWithTexts();
                    return YES;
                }
       return NO;
      }
      return YES;
     }
    }
  • 相关阅读:
    判断一个字符串是否为回文串
    读<大道至简>软件工程实践者的思想有感
    Java学习10.23(设置页面的编码方式1)
    Java学习10.25(javaweb在界面输出2)
    【搜索】C000_LG_奶酪(bfs)
    【并查集】B001_AW_自动程序分析(不要求顺序时的离散化)
    b_aw_信息传递 & 银河英雄传说(并查集暴力求环 / 记忆化 | 带权并查集)
    b_pat_团伙头目(并查集/dfs+字符串整形互相映射)
    【堆】C003_AW_接水问题(暴力 / 堆)
    【并查集】C002_AW_樱桃网 & 打击犯罪(最下生成树 / dfs / 并查集求连通块)
  • 原文地址:https://www.cnblogs.com/-ios/p/4670052.html
Copyright © 2011-2022 走看看