According to the docs, CTFramesetterSuggestFrameSizeWithConstraints () "determines the frame size needed for a string range".

Unfortunately the size returned by this function is never accurate. Here is what I am doing:

    NSAttributedString *string = [[[NSAttributedString alloc] initWithString:@"lorem ipsum" attributes:nil] autorelease];
    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef) string);
    CGSize textSize = CTFramesetterSuggestFrameSizeWithConstraints(framesetter, CFRangeMake(0,0), NULL, CGSizeMake(rect.size.width, CGFLOAT_MAX), NULL);

The returned size always has the correct width calculated, however the height is always slightly shorter than what is expected.

Is this the correct way to use this method?

Is there any other way to layout Core Text?

Seems I am not the only one to run into problems with this method. See https://devforums.apple.com/message/181450.

Edit: I measured the same string with Quartz using sizeWithFont:, supplying the same font to both the attributed string, and to Quartz. Here are the measurements I received:

Core Text: 133.569336 x 16.592285

Quartz: 135.000000 x 31.000000

link|improve this question
got same problem. always calculates one line less than it should if i ask it for calculating 3 lines it will give me the correct calculation for 2.. etc etc. – Fossli Jul 13 '10 at 14:54
See this related question: stackoverflow.com/questions/3374591/… – Heath Borders Dec 29 '10 at 19:52
feedback

6 Answers

For a single line frame, try this:

line = CTLineCreateWithAttributedString((CFAttributedStringRef) string);
CGFloat ascent;
CGFloat descent;
CGFloat width = CTLineGetTypographicBounds(line, &ascent, &descent, NULL);
CGFloat height = ascent+descent;
CGSize textSize = CGSizeMake(width,height);

For multiline frames, you also need to add the line's lead (see a sample code in Core Text Programming Guide)

For some reason, CTFramesetterSuggestFrameSizeWithConstraints() is using the difference in ascent and descent to calculate the height:

CGFloat wrongHeight = ascent-descent;
CGSize textSize = CGSizeMake(width, wrongHeight);

It could be a bug?

I'm having some other problems with the width of the frame; It's worth checking out as it only shows in special cases. See this question for more.

link|improve this answer
Many thanks, Mo. This helped me find what appears to be a reliable workaround for the SuggestSize when doing multiline labels. – Stephen Tallent May 5 '10 at 20:22
Glad I could help. Did you check if I was right about the wrongHeight? I want to file a bug report. PS. thanks gf. – mohsenr May 7 '10 at 9:08
feedback

try this.. seem to work:

+(CGFloat)heightForAttributedString:(NSAttributedString *)attrString forWidth:(CGFloat)inWidth
{
    CGFloat H = 0;

    // Create the framesetter with the attributed string.
    CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString( (CFMutableAttributedStringRef) attrString); 

    CGRect box = CGRectMake(0,0, inWidth, CGFLOAT_MAX);

    CFIndex startIndex = 0;

    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddRect(path, NULL, box);

    // Create a frame for this column and draw it.
    CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(startIndex, 0), path, NULL);

    // Start the next frame at the first character not visible in this frame.
    //CFRange frameRange = CTFrameGetVisibleStringRange(frame);
    //startIndex += frameRange.length;

    CFArrayRef lineArray = CTFrameGetLines(frame);
    CFIndex j = 0, lineCount = CFArrayGetCount(lineArray);
    CGFloat h, ascent, descent, leading;

    for (j=0; j < lineCount; j++)
    {
        CTLineRef currentLine = (CTLineRef)CFArrayGetValueAtIndex(lineArray, j);
        CTLineGetTypographicBounds(currentLine, &ascent, &descent, &leading);
        h = ascent + descent + leading;
        NSLog(@"%f", h);
        H+=h;
    }

    CFRelease(frame);
    CFRelease(path);
    CFRelease(framesetter);


    return H;
}
link|improve this answer
feedback

I did review mu code and I ma sure that routines are wrong, and, worse, Simulator behaves different to iOS device. we had to patch our app.-

link|improve this answer
feedback

It might seem strange but I found that if you use ceil function first and then add +1 to the height it will always work. Many third party APIs use this trick.

link|improve this answer
feedback

The problem is that you have to apply a paragraph style to the text before you measure it. If you don't then you get the default leading of 0.0. I provided a code sample for how to do this in my answer to a duplicate of this question here http://stackoverflow.com/a/10019378/1313863.

link|improve this answer
feedback

What do you mean shorter than expected? What are you expecting?

You mean it draws wrong? Then post your drawing code..

link|improve this answer
My question isn't about drawing. It's about the size that the frame setter returns. I've updated my question with some further info. – nsapplication Apr 26 '10 at 3:47
I know that the question isn't about drawing, thanks. In the catastrophic code you post a link to the OP is just drawing the text wrong, and jumps to the conclusion that CTFramesetterSuggestFrameSizeWithConstraints() has returned an incorrect height, which it hasn't, and won't. – hooleyhoop Apr 26 '10 at 8:59
mustISignUp... would you be willing to enlighten us on the proper way? I am needing CTFramesetterSuggestFrameSizeWithConstraints as well and can find no good examples or documentation that illustrate how. – Stephen Tallent Apr 29 '10 at 16:54
@Stephen: can you give me an example that you think doesn't work? As far as the original post is concerned the result may or may not be accurate - we have no way of knowing as the poster didn't post the actual code (what font is being used, what value is 'rect', etc.). Considering we dont know the font, font-size, string, or set-width, 133 x 16 seems perfectly reasonable, no? – hooleyhoop Apr 30 '10 at 9:32
Sure. I'll post some code a bit later. Been a bit busy with some rain here in TN. Regardless, even the code in the original shows the problem/misunderstanding we are having. The frame size returned by this method in theory should be able to be used by the same framesetters CreateFrame method. It should account for the attributed strings details that was used to create the framesetter. It doesnt appear to. In that when you use a width narrow enough to force the string to wrap, the height returned isn't enough to show all the lines. Take the OP code, change it to a longer sentence and draw... – Stephen Tallent May 4 '10 at 19:21
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.