How to color Text in Popup menu of NSComboBox? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:53:33Z http://stackoverflow.com/feeds/question/901164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/901164/how-to-color-text-in-popup-menu-of-nscombobox 1 How to color Text in Popup menu of NSComboBox? cocoafan 2009-05-23T08:45:20Z 2009-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#901180 0 Answer by Matt Ball for How to color Text in Popup menu of NSComboBox? Matt Ball 2009-05-23T09:00:55Z 2009-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#901789 1 Answer by Marc Charbonneau for How to color Text in Popup menu of NSComboBox? Marc Charbonneau 2009-05-23T15:57:13Z 2009-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>