I want to customize a NSMenu with NSMenuItems, so does it looks like the Apple Pro Apps.

But how can I customize a NSMenu? There is no draw method to change the appearance. If I set a NSView to a NSMenuItem, I can set the background color, but I will loose highlighting and menu handling. Furthermore the top and bottom cap of the NSMenu cannot be customized.

I found only this hint, but unfortunately without code.

Dark TableView with a white menu and white menu items

I would be very happy for some help!

link|improve this question
Did you successfully customize the NSMenu? – JJD Jan 31 at 12:53
I found the sources of NSMenu and others. Though, I could not find a useful hint there. – JJD Jan 31 at 14:38
I wonder if it would be helpful to get the MenuRef with _NSGetCarbonMenu() as mentioned in this thread. – JJD Jan 31 at 16:10
2  
Care to post a screenshot illustrating what you're trying to accomplish? – noa Feb 9 at 3:05
1  
@JJD the sources you have found are for GNUStep - developed entirely independently to Apple's Cocoa, albeit aiming to implement the same api (well, aiming at some combo of OpenStep/modern Cocoa). It can be instructive to consider the GNUStep sources, but keep in mind undocumented cases, or even documented cases, may well behave differently. – Mark Aufflick Feb 24 at 10:31
show 1 more comment
feedback

1 Answer

The hard answer is, make your own, subclass NSMenu, NSMenuItem etc and manually handle the drawing, animations etc.

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.