I have some text laid out using Core Text in my iPhone app. I'm using NSAttributedString to set certain styles within the text for given ranges.

I can't seem to find an attribute for setting a background / highlight colour, though it would seem it is possible. I couldn't find an attribute name constant that sounded relevant and the documentation only lists:

kCTCharacterShapeAttributeName
kCTFontAttributeName
kCTKernAttributeName
kCTLigatureAttributeName
kCTForegroundColorAttributeName
kCTForegroundColorFromContextAttributeName
kCTParagraphStyleAttributeName
kCTStrokeWidthAttributeName
kCTStrokeColorAttributeName
kCTSuperscriptAttributeName
kCTUnderlineColorAttributeName
kCTUnderlineStyleAttributeName
kCTVerticalFormsAttributeName
kCTGlyphInfoAttributeName
kCTRunDelegateAttributeName

Craig Hockenberry, developer of Twitterrific has said publicly on Twitter that he uses Core Text to render the tweets, and Twitterrific has this background / highlight that I'm talking about when you touch a link.

alt text

Any help or pointers in the right direction would be fantastic, thanks.

Edit: Here's a link to the tweet Craig posted mentioning "Core text, attributed strings and a lot of hard work", and the follow up that mentioned using CTFrameSetter metrics to work out if touches intersect with links.

link|improve this question

1  
This is not an answer but can you use the screenshot option in the Organiser window of XCode or does that cancel touches as well? – deanWombourne Dec 21 '10 at 11:54
Worked a treat, thanks Dean. – Jasarien Dec 21 '10 at 12:01
feedback

1 Answer

up vote 3 down vote accepted

In the end, I had to use the Core Text metrics methods (getting the range, bounds, origins of lines etc) to calculate the bounding rectangle of the link. Once I had a rect for each line the link spanned, I drew the background into the context before redrawing the text above it.

Seems like a hell of a lot of work, but it works.

link|improve this answer
Hi Jasarien, Can you show how to use those metrics?.I am very new to core text.It will be very helpful. I am trying on my own too. – Vignesh Jan 21 '11 at 8:33
Try this quick presentation, it's very useful. slideshare.net/DJune/text-layout-with-core-text – Jasarien Jan 21 '11 at 10:29
I think it would be nicer if you provided the solution you found. – aryaxt Jul 18 '11 at 0:10
1  
The solution I ended up with is here github.com/jasarien/CoreTextHyperlinkView – Jasarien Jul 18 '11 at 15:20
feedback

Your Answer

 
or
required, but never shown

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