Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to create statusbar with text effect like in Safari or iTunes, i.e. recessed text.

example

However, if I simply add shadow in Interface Builder using Core Animation panel, OS X's worst text rendering kicks in:

wheres my subpixel

What's the trick to get recessed text on a label and keep proper subpixel rendering?

share|improve this question

2 Answers

up vote 33 down vote accepted

There is a built-in way to do this:

[[yourTextField cell] setBackgroundStyle:NSBackgroundStyleRaised];
share|improve this answer
Is there a way to edit the highlight color of this? – coneybeare Nov 9 '12 at 17:45
I don't think so, this is handled internally by the system. You'd need to write your own drawing code to change it. – Rob Keniger Nov 12 '12 at 4:25

It's a cheap old trick: You draw the text in white at an offset and then draw the black text on top of it.

There is a hook for shadows in the text-drawing system, NSAttributedString's NSShadowAttributeName. But testing this out, it appears to kill the subpixel antialiasing as well.

share|improve this answer
+1 Makes an awful lot of sense. Nice one. – Wim Hollebrandse Nov 18 '09 at 22:41
1  
Isn't there a better solution though? One of the numerous OS X text APIs must do it properly... I don't want to add another label, as this will be harder maintain and will probably be annoying for Voice Over users. – porneL Nov 18 '09 at 23:03
1  
The answer dealt with drawing extra text, not necessarily adding an extra label. You could create a custom subclass of NSTextField with custom drawing code. Then, you only need one label. – Daniel Yankowsky Nov 18 '09 at 23:42
You don't need to do any of this, NSCell handles it for you. See my answer. – Rob Keniger Nov 19 '09 at 8:09
1  
@irsk: Good point. I'm leaving mine since it works in any version of OS X while setBackgroundStyle: wasn't introduced until Leopard. – Chuck Nov 19 '09 at 8:18

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.