使用 Core Text 动态更改视图高度

发布于 2024-12-08 11:06:52 字数 3250 浏览 0 评论 0原文

我有一个视图,我想在其中使用 Text Core(在 iPad 上)绘制文本。当文本长大时,我想增加视图的高度,但我不知道如何计算所需的框架高度。 我用它在 drawRect 方法中绘制文本:

    CGContextSetTextMatrix(context, CGAffineTransformIdentity);
    CGContextTranslateCTM(context, 0, self.bounds.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);

    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)currentTexts);
    CGMutablePathRef textPath = CGPathCreateMutable();
    CGRect textRect = CGRectMake(PADDING, PADDING, self.frame.size.width - 2 * PADDING, self.frame.size.height - 2 * PADDING);
    CGPathAddRect(textPath, NULL, textRect);
    CTFrameRef textFrame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), textPath, NULL);

    CTFrameDraw(textFrame, context);

    CFRelease(textFrame);
    CGPathRelease(textPath);
    CFRelease(framesetter);

我尝试使用 sizeWithFont 获取文本的高度,并且:

- (CGSize) measureFrame: (CTFrameRef) frame
{
CGPathRef framePath = CTFrameGetPath(frame);
CGRect frameRect = CGPathGetBoundingBox(framePath);

CFArrayRef lines = CTFrameGetLines(frame);
CFIndex numLines = CFArrayGetCount(lines);

CGFloat maxWidth = 0;
CGFloat textHeight = 0;

// Now run through each line determining the maximum width of all the lines.
// We special case the last line of text. While we've got it's descent handy,
// we'll use it to calculate the typographic height of the text as well.
CFIndex lastLineIndex = numLines - 1;
for(CFIndex index = 0; index < numLines; index++)
{
    CGFloat ascent, descent, leading, width;
    CTLineRef line = (CTLineRef) CFArrayGetValueAtIndex(lines, index);
    width = CTLineGetTypographicBounds(line, &ascent,  &descent, &leading);

    if(width > maxWidth)
    {
        maxWidth = width;
    }

    if(index == lastLineIndex)
    {
        // Get the origin of the last line. We add the descent to this
        // (below) to get the bottom edge of the last line of text.
        CGPoint lastLineOrigin;
        CTFrameGetLineOrigins(frame, CFRangeMake(lastLineIndex, 1), &lastLineOrigin);

        // The height needed to draw the text is from the bottom of the last line
        // to the top of the frame.
        textHeight =  CGRectGetMaxY(frameRect) - lastLineOrigin.y + descent;
    }
}

// For some text the exact typographic bounds is a fraction of a point too
// small to fit the text when it is put into a context. We go ahead and round
// the returned drawing area up to the nearest point.  This takes care of the
// discrepencies.
return CGSizeMake(ceil(maxWidth), ceil(textHeight));
}

我用它来创建属性字符串:

CTParagraphStyleSetting setting[1] = {
    {kCTParagraphStyleSpecifierMinimumLineSpacing, sizeof(CGFloat), &minimumLineSpacing}
};

CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(setting, 1);

NSDictionary *attr = [NSDictionary dictionaryWithObjectsAndKeys:
                      (id)textColor.CGColor, kCTForegroundColorAttributeName,
                      (id)currentFont, kCTFontAttributeName, 
                      (id)paragraphStyle, kCTParagraphStyleAttributeName,
                      nil];

当我使用 sizeWithFont 时,开始时一切正常,但是当文本有更多的线条,框架比文本越来越大,我希望它完全适合文本。我怎样才能做到呢?

I have a view in which I want to draw a text with Text Core (on the iPad). When text grown up I'd like to increase a height of the view, but I don't know how to calculate needed height of frame.
I use it to draw a text in drawRect method:

    CGContextSetTextMatrix(context, CGAffineTransformIdentity);
    CGContextTranslateCTM(context, 0, self.bounds.size.height);
    CGContextScaleCTM(context, 1.0, -1.0);

    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)currentTexts);
    CGMutablePathRef textPath = CGPathCreateMutable();
    CGRect textRect = CGRectMake(PADDING, PADDING, self.frame.size.width - 2 * PADDING, self.frame.size.height - 2 * PADDING);
    CGPathAddRect(textPath, NULL, textRect);
    CTFrameRef textFrame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, 0), textPath, NULL);

    CTFrameDraw(textFrame, context);

    CFRelease(textFrame);
    CGPathRelease(textPath);
    CFRelease(framesetter);

I tried to get a height of text using sizeWithFont and also that:

- (CGSize) measureFrame: (CTFrameRef) frame
{
CGPathRef framePath = CTFrameGetPath(frame);
CGRect frameRect = CGPathGetBoundingBox(framePath);

CFArrayRef lines = CTFrameGetLines(frame);
CFIndex numLines = CFArrayGetCount(lines);

CGFloat maxWidth = 0;
CGFloat textHeight = 0;

// Now run through each line determining the maximum width of all the lines.
// We special case the last line of text. While we've got it's descent handy,
// we'll use it to calculate the typographic height of the text as well.
CFIndex lastLineIndex = numLines - 1;
for(CFIndex index = 0; index < numLines; index++)
{
    CGFloat ascent, descent, leading, width;
    CTLineRef line = (CTLineRef) CFArrayGetValueAtIndex(lines, index);
    width = CTLineGetTypographicBounds(line, &ascent,  &descent, &leading);

    if(width > maxWidth)
    {
        maxWidth = width;
    }

    if(index == lastLineIndex)
    {
        // Get the origin of the last line. We add the descent to this
        // (below) to get the bottom edge of the last line of text.
        CGPoint lastLineOrigin;
        CTFrameGetLineOrigins(frame, CFRangeMake(lastLineIndex, 1), &lastLineOrigin);

        // The height needed to draw the text is from the bottom of the last line
        // to the top of the frame.
        textHeight =  CGRectGetMaxY(frameRect) - lastLineOrigin.y + descent;
    }
}

// For some text the exact typographic bounds is a fraction of a point too
// small to fit the text when it is put into a context. We go ahead and round
// the returned drawing area up to the nearest point.  This takes care of the
// discrepencies.
return CGSizeMake(ceil(maxWidth), ceil(textHeight));
}

I use that to create an attrubuted string:

CTParagraphStyleSetting setting[1] = {
    {kCTParagraphStyleSpecifierMinimumLineSpacing, sizeof(CGFloat), &minimumLineSpacing}
};

CTParagraphStyleRef paragraphStyle = CTParagraphStyleCreate(setting, 1);

NSDictionary *attr = [NSDictionary dictionaryWithObjectsAndKeys:
                      (id)textColor.CGColor, kCTForegroundColorAttributeName,
                      (id)currentFont, kCTFontAttributeName, 
                      (id)paragraphStyle, kCTParagraphStyleAttributeName,
                      nil];

When I use sizeWithFont, at the begin everything is ok, but when text has more lines, the frame is bigger and bigger than a text and I want it to fit exactly the text. How can I make it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虚拟世界 2024-12-15 11:06:52

要计算文本的高度,您是否尝试过使用 CTFramesetterSuggestFrameSizeWithConstraints

http://foobarpig.com/iphone/using -ctframesettersuggestframesizewithconstraints-and-sizewithfont-to-calculate-text-height.html

To calculate the height of the text, have you tried using CTFramesetterSuggestFrameSizeWithConstraints ?

http://foobarpig.com/iphone/using-ctframesettersuggestframesizewithconstraints-and-sizewithfont-to-calculate-text-height.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文