How to color Text in Popup menu of NSComboBox? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:53:33Zhttp://stackoverflow.com/feeds/question/901164http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/901164/how-to-color-text-in-popup-menu-of-nscombobox1How to color Text in Popup menu of NSComboBox? cocoafan2009-05-23T08:45:20Z2009-05-23T15:57:13Z
<p>Hi,</p>
<p>I'm using a NSComboBox and want to mark some of the items in the popup list appear in red.
I couldn't find a proper Method to override in NSComboBoxCell. Any idea?</p>
http://stackoverflow.com/questions/901164/how-to-color-text-in-popup-menu-of-nscombobox/901180#9011800Answer by Matt Ball for How to color Text in Popup menu of NSComboBox? Matt Ball2009-05-23T09:00:55Z2009-05-23T09:00:55Z<p>How about using <code>NSCell</code>'s <code>-setAttributedStringValue:</code> method? Just create an <code>NSAttributedString</code> which has the color you want set for the <code>NSForegroundColorAttributeName</code> key and you should be good to go.</p>
http://stackoverflow.com/questions/901164/how-to-color-text-in-popup-menu-of-nscombobox/901789#9017891Answer by Marc Charbonneau for How to color Text in Popup menu of NSComboBox? Marc Charbonneau2009-05-23T15:57:13Z2009-05-23T15:57:13Z<p>You'll need to modify the popup button's menu items directly, but it's not very hard. You shouldn't even need to subclass, you can do it all from the controller.</p>
<pre><code>NSMenu *menu = [popUpButton menu];
NSMenuItem *item = [menu itemWithTag:100];
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:[NSColor redColor], NSForegroundColorAttributeName, nil];
NSAttributedString *string = [[NSAttributedString alloc] initWithString:[item title] attributes:attributes];
[item setAttributedTitle:string];
</code></pre>
<p>You'll probably want to copy attributes from the existing attributed string title so the font and size remain the same, but that should get you started.</p>