美文网首页
UITextView设置富文本,显示内容

UITextView设置富文本,显示内容

作者: 原味豆浆 | 来源:发表于2018-08-20 20:26 被阅读795次

    最近有个需求是在UITextView输入文字的时候,按照设计好的字体、字号、颜色、行间距、段间距来显示文字,输入的文字有字数限制。需求就这样,编写期间遇到了输入中文问题、插入文字问题,下面根据我的编写过程来讲下代码。
    首先是在UITextView输入文字的时候进行富文本的设置,很容易想到下面这个代理

    - (void)textViewDidChange:(UITextView *)textView;
    

    那我们很容易就会这样写:

    // 代理
    - (void)textViewDidChange:(UITextView *)textView {
       [self textViewSetText:textView];
    }
    
    // 自己的textView显示文字
    - (void)textViewSetText:(UITextView *)textView {
        NSString  *nsTextContent = textView.text;
        NSInteger existTextNum = nsTextContent.length;
        if (existTextNum > MAX_LIMIT_NUMS) {
            //截取到最大位置的字符
            NSString *string = [nsTextContent substringToIndex:MAX_LIMIT_NUMS];
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:string];
            //        [textView setText:s];
            textView.attributedText = attributedString;
            [_textView scrollRangeToVisible:NSMakeRange(_textView.text.length, 1)];
        } else {
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:nsTextContent];
            textView.attributedText = attributedString;
        }
         // 提示label更新字数提示信息
        _wordsNumberLabel.text = [NSString stringWithFormat:@"%ld/%d字", existTextNum, MAX_LIMIT_NUMS];
    }
    
    // 富文本设置
    - (NSMutableAttributedString *)textAttributedStringWithString:(NSString *)string {
        NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:string];
        // 字号
        [attributedString addAttribute: NSFontAttributeName value:[UIFont systemFontOfSize:16] range: NSMakeRange(0, attributedString.length)];
        // 字体颜色
        [attributedString addAttribute: NSForegroundColorAttributeName value:[UIColor mediaTableSectionColor] range: NSMakeRange(0, attributedString.length)];
        NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc] init];
        paraStyle.lineBreakMode = NSLineBreakByWordWrapping;
        paraStyle.alignment = NSTextAlignmentLeft;
        paraStyle.lineSpacing = 12;
        paraStyle.paragraphSpacing = 18;
        [attributedString addAttribute: NSParagraphStyleAttributeName value:paraStyle range: NSMakeRange(0, attributedString.length)];
        return attributedString;
    }
    
    

    解决,输入文字显示的样式都是预期的效果。
    ~ ┭┮﹏┭┮ ~
    但是后来发现,再输入中文的时候,文字还没拼写完,各种abcd就显示在textView上面了。。。 于是就有了下面这个解决方案。

    - (void)textViewDidChange:(UITextView *)textView {
        NSString *lang = textView.textInputMode.primaryLanguage;// 键盘输入模式
        if ([lang isEqualToString:@"zh-Hans"]){
            // 中文输入
            UITextRange *selectedRange = [textView markedTextRange];
            if (!selectedRange) {
                // 没有有高亮
                [self textViewSetText:textView];
            }
        } else {
            [self textViewSetText:textView];
        }
    }
    
    - (void)textViewSetText:(UITextView *)textView {
        NSString  *nsTextContent = textView.text;
        NSInteger existTextNum = nsTextContent.length;
        if (existTextNum > MAX_LIMIT_NUMS) {
            //截取到最大位置的字符
            NSString *string = [nsTextContent substringToIndex:MAX_LIMIT_NUMS];
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:string];
            //        [textView setText:s];
            textView.attributedText = attributedString;
            [_textView scrollRangeToVisible:NSMakeRange(_textView.text.length, 1)];
        } else {
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:nsTextContent];
            textView.attributedText = attributedString;
        }
        //不让显示负数 _wordsNumberLabel.text = @"0/2000字"
        //    _textNumber = existTextNum;
        _wordsNumberLabel.text = [NSString stringWithFormat:@"%ld/%d字", existTextNum, MAX_LIMIT_NUMS];
    }
    
    - (NSMutableAttributedString *)textAttributedStringWithString:(NSString *)string {
        NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:string];
        // 字号
        [attributedString addAttribute: NSFontAttributeName value:[UIFont systemFontOfSize:16] range: NSMakeRange(0, attributedString.length)];
        // 字体颜色
        [attributedString addAttribute: NSForegroundColorAttributeName value:[UIColor mediaTableSectionColor] range: NSMakeRange(0, attributedString.length)];
        NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc] init];
        paraStyle.lineBreakMode = NSLineBreakByWordWrapping;
        paraStyle.alignment = NSTextAlignmentLeft;
        paraStyle.lineSpacing = 12;
        paraStyle.paragraphSpacing = 18;
        [attributedString addAttribute: NSParagraphStyleAttributeName value:paraStyle range: NSMakeRange(0, attributedString.length)];
        return attributedString;
    }
    

    ε=(´ο`*)))唉,效果不错,没有问题了。那么我们在刚才输入的文字中间插一段文字吧,咦,怎么插入完文字,光标直接跑到文字末尾去了,不能继续在刚才的位置插入了呢。
    查了很多资料,最终找到了下面的解决方案。
    以下就是整个需求的完整代码片段。

    // 可输入的最大字数
    #define MAX_LIMIT_NUMS 2000
    #pragma mark - UITextViewDelegate
    // 代理方法
    - (void)textViewDidChange:(UITextView *)textView {
        NSString *lang = textView.textInputMode.primaryLanguage;// 键盘输入模式
        if ([lang isEqualToString:@"zh-Hans"]) {
            // 中文输入
            UITextRange *selectedRange = [textView markedTextRange];
            if (!selectedRange) {
                // 没有有高亮
                [self textSelectionRangeWithText:textView];
            }
        } else {
            [self textSelectionRangeWithText:textView];
        }
    }
    
    // 定位光标
    - (void)textSelectionRangeWithText:(UITextView *)textView {
        NSRange oldRange = _textView.selectedRange;
        // 判断是否有候选字符,如果不为nil,代表有候选字符
        if(textView.markedTextRange == nil){
            [self textViewSetText:textView];
            textView.selectedRange = oldRange;  // 改变内容时光标位置不变
        }
    }
    
    // 自己的textView显示文字
    - (void)textViewSetText:(UITextView *)textView {
        NSString  *nsTextContent = textView.text;
        NSInteger existTextNum = nsTextContent.length;
        if (existTextNum > MAX_LIMIT_NUMS) {
            //截取到最大位置的字符
            NSString *string = [nsTextContent substringToIndex:MAX_LIMIT_NUMS];
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:string];
            //        [textView setText:s];
            textView.attributedText = attributedString;
            [_textView scrollRangeToVisible:NSMakeRange(_textView.text.length, 1)];
        } else {
            NSMutableAttributedString *attributedString = [self textAttributedStringWithString:nsTextContent];
            textView.attributedText = attributedString;
        }
        // 提示label更新字数提示信息
        _wordsNumberLabel.text = [NSString stringWithFormat:@"%ld/%d字", existTextNum, MAX_LIMIT_NUMS];
    }
    
    // 富文本设置
    - (NSMutableAttributedString *)textAttributedStringWithString:(NSString *)string {
        NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:string];
        // 字号
        [attributedString addAttribute: NSFontAttributeName value:[UIFont systemFontOfSize:16] range: NSMakeRange(0, attributedString.length)];
        // 字体颜色
        [attributedString addAttribute: NSForegroundColorAttributeName value:[UIColor mediaTableSectionColor] range: NSMakeRange(0, attributedString.length)];
        NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc] init];
        paraStyle.lineBreakMode = NSLineBreakByWordWrapping;
        paraStyle.alignment = NSTextAlignmentLeft;
        paraStyle.lineSpacing = 12;
        paraStyle.paragraphSpacing = 18;
        [attributedString addAttribute: NSParagraphStyleAttributeName value:paraStyle range: NSMakeRange(0, attributedString.length)];
        return attributedString;
    }
    
    

    以上就是我的解决方案,希望能帮助有需要的人。
    附带一个自己练手写的带有占位符的UITextView
    (可能会发现设置了行间距之后,在文字中间插入文字的时候光标高度有些不好看,上面这个demo中有自定义光标高度的解决方案)

    相关文章

      网友评论

          本文标题:UITextView设置富文本,显示内容

          本文链接:https://www.haomeiwen.com/subject/dktriftx.html