美文网首页
改变字符串中数字颜色

改变字符串中数字颜色

作者: iOS_陈楠 | 来源:发表于2018-04-25 15:36 被阅读36次

    需求如图:


    581524641414_.pic.jpg

    这个,大家肯定都知道啊,用 UILabel.attributedText = NSMutableAttributedString
    就可以满足需求了

    因为需求中,我们只需要改变 数字 的颜色,所以这里用到 NSScanner
    代码如下:

     简单来说就是: for循环 + NSSCanner
     - (void)setRichNumberWithLabel:(UILabel*)label Color:(UIColor *)color {
    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:label.text];
    NSString *tempString = nil;
    for(int i =0; i < [attributedString length]; i++) {
        tempString = [label.text substringWithRange:NSMakeRange(i, 1)];
        if ([self isInt:tempString]) {
            [attributedString setAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                             color, NSForegroundColorAttributeName, nil]
                                      range:NSMakeRange(i, 1)];
        }
    }
    label.attributedText = attributedString;
    }
    
    // 判断是不是数字
    - (BOOL)isInt:(NSString *)string {
    int value;
    NSScanner *scanner = [NSScanner scannerWithString:string];
    return [scanner scanInt:&value] && [scanner isAtEnd];
    }
    
     以上例子会循环的搜索字符串中的整数值,isAtEnd会紧接上一次搜索到的字符位置继续搜索看是否存在下一个整数值,直至扫描结束。
    

    特此记录。

    相关文章

      网友评论

          本文标题:改变字符串中数字颜色

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