NSMutableAttributedString知道在哪个文本上更改颜色的位置

时间:2015-03-02 08:48:40

标签: ios nsmutableattributedstring

我正在做像facebook这样的标记功能,我已经可以标记用户了。我可以这样表现出来。这是由这段代码完成的。

NSMutableAttributedString * string = [[NSMutableAttributedString alloc]initWithString:self.textView.text];

for (NSString *word in self.tagNameCollection) {
    [string addColor:[UIColor redColor] substring:word];
    [string addBackgroundColor:[Helpers getFromRGB:135 green:206 blue:250] substring:word];
}

所以,我有NSMutableAttributedString。我可以知道我在哪里更改了颜色,我的NSMutableAttributedString的字体?我可以知道该怎么办吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以使用enumerateAttributesInRange:options:usingBlock:获取NSAttributedString的所有属性。

示例:

[attributedString enumerateAttributesInRange:NSMakeRange(0, [attributedString length])
                                     options:0
                                  usingBlock:^(NSDictionary *attributes, NSRange range, BOOL *stop) {
if ([attributes objectForKey:NSForegroundColorAttributeName])
    NSLog(@"Found ForeGround Color: %@ in range %@", [attributes objectForKey:NSForegroundColorAttributeName], NSStringFromRange(range));
if ([attributes objectForKey:NSFontAttributeName])
    NSLog(@"Found Font: %@ in range %@", [attributes objectForKey:NSFontAttributeName], NSStringFromRange(range));
if ([attributes objectForKey:NSBackgroundColorAttributeName])
    NSLog(@"Found Background Color: %@ in range %@", [attributes objectForKey:NSBackgroundColorAttributeName], NSStringFromRange(range));

}];