The code is extracted from SimpleTextInput sampe code, with a bit modification.

Create the frame:

self.font = [UIFont systemFontOfSize:18.f];
CTFontRef ctFont = CTFontCreateWithName((CFStringRef) self.font.fontName, self.font.pointSize, NULL);        
self.attributes = [[NSDictionary dictionaryWithObject:(id)ctFont forKey:(NSString *)kCTFontAttributeName] retain];
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithString:self.text attributes:self.attributes];    

_framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attributedString);

// Create the Core Text frame using our current view rect bounds
UIBezierPath *path = [UIBezierPath bezierPathWithRect:self.bounds];
_frame =  CTFramesetterCreateFrame(_framesetter, CFRangeMake(0, 0), [path CGPath], NULL);

line below is any line of the frame (get by CTFrameGetLines(_frame)):

CGFloat ascent, descent, leading;
CTLineGetTypographicBounds(line, &ascent, &descent, &leading);
CGPoint origin;
CTFrameGetLineOrigins(_frame, CFRangeMake(i, 1), &origin);

Problems:

  1. ascent obtained from CTLineGetTypographicBounds or ctFont is 13.860352 while self.font.ascender is 16.860352. Where does this 3 point discrepancy come from?
  2. descent is 4.139648, leading is 0, so ascent + descent + leading = 18, but self.font.lineHeight and line height calculated by subtracting adjacent line origins are 22. Where does this 4 point discrepancy come from?
link|improve this question

61% accept rate
A comment about my bounty -- Even though a diagram like cocoanetics.com/2010/02/understanding-uifont would be the best answer, simply answering the question an0 asked would already be a big help. – William Jockusch Oct 13 '11 at 13:58
feedback

1 Answer

May this link helps: http://web.archiveorange.com/archive/v/nagQXnjALCx7cZFQVEX7

link|improve this answer
"CTFramesetter may adjust the effective line height depending on the font" - this explains part of problem 2. Thanks! But do you know how UIFont.lineHeight is calculated? And the difference between CTFont's ascent and UIFont's ascender is still mysterious. – an0 Jun 16 '11 at 18:18
CTLineGetTypographicBounds outputs the line's ascender, not the UIFont or CTFont's ascender, you may use CTFontGetAscent to compare if they are matching. – xan Jun 17 '11 at 0:54
But the problem, from what I observed, is that CTLineGetTypographicBounds's ascent is the same as CTFont's ascent, but they differ from UIFont's ascender, even though UIFont and CTFont are referring to the same font. – an0 Jun 17 '11 at 4:48
feedback

Your Answer

 
or
required, but never shown

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