I was planning on using NSAttributedString to highlight portions of strings with the matching query of a user's search. However, I can't find an iOS equivalent of NSBackgroundColorAttributeName—there's no kCTBackgroundColorAttributeName. Does such a thing exist, similar to the way NSForegroundColorAttributeName becomes kCTForegroundColorAttributeName?

link|improve this question

See if this helps stackoverflow.com/questions/5424003/… – Oscar Del Ben Jul 27 '11 at 6:35
Thanks, unfortunately since NSAttributedString is laid out in CoreText I don't think there are views for which I can change the background color. – kevboh Jul 28 '11 at 15:31
feedback

2 Answers

up vote 4 down vote accepted

No, such an attribute doesn't exist in Core Text, you'll have to draw your own rectangles underneath the text to simulate it.

Basically, you'll have to figure out which rectangle(s) to fill for a given range in the string. If you do your layout with a CTFramesetter that produces a CTFrame, you need to get its lines and their origins using CTFrameGetLines and CTFrameGetLineOrigins.

Then iterate over the lines and use CTLineGetStringRange to find out which lines are part of the range you want to highlight. To get the rectangles to fill, use CTLineGetTypographicBounds (for the height) and CTLineGetOffsetForStringIndex (for the horizontal offset and width).

link|improve this answer
1  
Great answer. It's a shame a simple attribute isn't around to replace all that code. – kevboh Aug 1 '11 at 15:25
feedback

maybe you can use UIWebView as a container and take advantage of CSS to highlight the words

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.