将粗体应用于NSAttributedString的一部分,同时保留字体大小和面

时间:2013-01-04 16:47:58

标签: objective-c ios nsattributedstring

我正在使用UITextViewNSAttributedString的iOS文本编辑器。它的功能与传统的相似(即选择一个区域,单击一个按钮,它会将该效果应用于该区域,同时保留文本上的任何其他属性。

不幸的是NSAttributedString,并非所有这些都可以独立调整。其中一些(至少是粗体,字体和字体大小)都需要传递UIFont,这将为该区域设置所有这些属性(即使您只想设置一个)。看作单个区域可能包含多个面和大小,这将导致天真的方法破坏了大量现有格式。

有没有推荐的方法来实现这一目标?我认为我唯一的选择是迭代我想要应用它的区域的属性,将其分组为具有相同其他字体属性的块,然后单独应用于每个块。

2 个答案:

答案 0 :(得分:7)

您有正确的想法,enumerateAttribute:inRange:options:usingBlock:已经为您提供了算法。要使用它来处理字体运行:

[myAttributedString enumerateAttribute:NSFontAttributeName
                               inRange:selectedRange
                               options:NSAttributedStringEnumerationLongestEffectiveRangeNotRequired
                            usingBlock:addBoldBlock
]

其中 addBoldBlock 采用当前字体(作为块的第一个参数提供),添加粗体,并将其应用于当前块(作为块的第二个参数提供)。

答案 1 :(得分:1)

这是我在DTRichTextEditor中使用的内容:

- (void)toggleBoldInRange:(NSRange)range
{
    // first character determines current boldness
    NSDictionary *currentAttributes = [self typingAttributesForRange:range];

    if (!currentAttributes)
    {
        return;
    }

    [self beginEditing];

    CTFontRef currentFont = (__bridge CTFontRef)[currentAttributes objectForKey:(id)kCTFontAttributeName];
    DTCoreTextFontDescriptor *typingFontDescriptor = [DTCoreTextFontDescriptor fontDescriptorForCTFont:currentFont];

    // need to replace name with family
    CFStringRef family = CTFontCopyFamilyName(currentFont);
    typingFontDescriptor.fontFamily = (__bridge NSString *)family;
    CFRelease(family);

    typingFontDescriptor.fontName = nil;

    NSRange attrRange;
    NSUInteger index=range.location;

    while (index < NSMaxRange(range)) 
    {
        NSMutableDictionary *attrs = [[self attributesAtIndex:index effectiveRange:&attrRange] mutableCopy];
        CTFontRef currentFont = (__bridge CTFontRef)[attrs objectForKey:(id)kCTFontAttributeName];

        if (currentFont)
        {
            DTCoreTextFontDescriptor *desc = [DTCoreTextFontDescriptor fontDescriptorForCTFont:currentFont];

            // need to replace name with family
            CFStringRef family = CTFontCopyFamilyName(currentFont);
            desc.fontFamily = (__bridge NSString *)family;
            CFRelease(family);

            desc.fontName = nil;

            desc.boldTrait = !typingFontDescriptor.boldTrait;
            CTFontRef newFont = [desc newMatchingFont];
            [attrs setObject:(__bridge id)newFont forKey:(id)kCTFontAttributeName];
            CFRelease(newFont);

            if (attrRange.location < range.location)
            {
                attrRange.length -= (range.location - attrRange.location);
                attrRange.location = range.location;
            }

            if (NSMaxRange(attrRange)>NSMaxRange(range))
            {
                attrRange.length = NSMaxRange(range) - attrRange.location;
            }

            [self setAttributes:attrs range:attrRange];
        }

        index += attrRange.length;
    }

    [self endEditing];
}

这使用来自开源DTCoreText项目的DTCoreTextFontDescriptor。

PS:您必须相应地调整它以便与UIFont一起使用。