How would I get a CGRect from an NSRange for text rendered with Core Text?

I am using Core Text with an NSAttributedString.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

It is an absolute pain but can be done.

You need to get all of the lines in the frame using CTFrameGetLines(), check if their character range is in the range you're looking for using CTLineGetStringRange(), use CTLineGetTypographicBounds() to find how big the line itself would render as, and use CTLineGetOffsetForStringIndex() to determine the actual position of the start/end character of the range (if the line is just a subrange of the desired range).

Combining all of this and adding up offsets and heights and such can get you what you want. Note that CTLineGetImageBounds() doesn't work without a graphics context (and, from what I gather, it is pretty expensive anyway) and is not necessary to solve this problem.

link|improve this answer
A detailed answer, thanks very much! It's always a pain to find all the functions that are required for things such as this. :) – Joshua Dec 19 '10 at 8:53
1  
@Joshua can u share ur code when implementing this answer?? i think i have the some problem and can not solved it until 3 weeks, help me, please... – R. Dewi Jan 6 '11 at 10:49
@Risma I never actually got round to implementing this but everything you need is in Sean's answer. – Joshua Jan 6 '11 at 16:05
feedback

FIrst determine the line(s) in which the range you are interested in lies is. Then call CTLineGetOffsetForStringIndex() to get an offset of a specific string position from the start of the line. Together with CTLineGetImageBounds(), it should be possible to calculate a CGPoint position of the first and last characters in your range.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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