Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to render rich text in my view (simple formatting, multiple fonts in one line of texts, etc.). For some performance reasons using UIWebView to do this is an overhead for me.

Core Text technology looks very appealing for doing that, but I am wondering if text rendered this way can be selected by user using (standard copy / paste function)?

share|improve this question
it would be nice if @javsmo answer was selected instead of the current one. It has 7 up votes – ppaulojr Nov 5 '12 at 17:40
I know, it is a very nice answer but it showed few months after selected answer (which also answered my question). I am not sure if this would be fair... – Lukasz Nov 6 '12 at 8:19

2 Answers

up vote 2 down vote accepted

No, Core Text is basically an enhanced text drawing framework. However there is some info in the comments on this blog article on how you would implement your own selection engine.

share|improve this answer

I implemented a text selection in CoreText. It is really a hard work... But it's doable.

Basically you have to save all CTLine rects and origins using CTFrameGetLineOrigins(1), CTLineGetTypographicBounds(2), CTLineGetStringRange(3) and CTLineGetOffsetForStringIndex(4).

The line rect can be calculated using the origin(1), ascent(2), descent(2) and offset(3)(4) as shown bellow.

lineRect = CGRectMake(origin.x + offset, 
                      origin.y - descent, 
                      offset, 
                      ascent + descent);

After doing that, you can test which line has the touched point looping the lines (always remember that CoreText uses inverse Y coordinates).

Knowing the line that has the touched point, you can know the letter that is located at that point (or the nearest letter) using CTLineGetStringIndexForPosition.

Here's one screenshot.

selecting text drawn with CoreText

For that loupe, I used the code shown in this post.

Edit: To draw the blue background selection, you have to paint the rect using CGContextFillRect. Unfortunately, there's no background color in NSAttributedString.

share|improve this answer
   
Hi javsmo, your example looks brilliant! Any chance you could send me some source code? Many thanks. Tom – TomTom Oct 6 '12 at 10:13
Thanks, @TomTom . My code to draw text and do the selections with CoreText has almost 500 lines. It's complicated to post it without any explain. Which part of selection are you having trouble with? – javsmo Oct 6 '12 at 17:53
worked for me keep it up – Prince Nov 5 '12 at 13:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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