What are the 64-bit replacements for the two methods -[NSMenuItemCell menuView] and -[NSMenuItemCell setMenuView:] of the NSMenuItemCell class? How can I obtain the same results?

link|improve this question

What makes you think your app needs to be 64 bit ? – Paul R Sep 18 '11 at 6:55
@Paul R: The app is a movie player and I had a noticeable reduction of CPU usage and increase of performance switching to 64bit – Andrea3000 Sep 18 '11 at 19:11
Fair enough - just checking - many people just seem to assume that 64 bits == "better" without any justification. – Paul R Sep 18 '11 at 20:19
feedback

2 Answers

up vote 6 down vote accepted

The NSMenuItemCell and NSMenuView have never been used to draw menus in any release version of Mac OS X. The following is an excerpt from the Mac OS X Developer Release Notes:

Notes specific to MacOS X Developer Preview 3

Menu

The implementation of menus has changed drastically; NSMenuView and NSMenuItemCell are no longer used, -[NSMenu menuRepresentation] now returns nil, and tear off menus are no longer available. For Developer Preview 3, there is no support for menu item images. If there is no text in the menu item, a placeholder text consisting of "< image >" or "< image name >" will be inserted instead. Menu item state images are not supported either and in their place the standard checkbox or dash for on and mixed states are used.

(I'm not sure of the exact timeline of pre-Public beta Mac OS X, but for "Developer Preview 3", I'd guess we're talking around the late 1990s here).

For more info on how menus are currently implemented, see Application Menu and Pop-up List Programming Topics: How Menus Work

As 一二三 alluded to, you use NSMenu along with NSMenuItem to implement menus. In OS X 10.5 and greater, you can use custom NSView instances in NSMenuItems using the -setView: method.

link|improve this answer
Thank you for the answer – Andrea3000 Sep 18 '11 at 19:13
Mac OS X DP3 came out in January 2000, so you're pretty close. – Rob Keniger Sep 19 '11 at 3:44
feedback

To customise menu item drawing, you need to supply a custom view to NSMenuItem.

link|improve this answer
Thank you, I'll try your solution ;-) – Andrea3000 Sep 18 '11 at 19:12
feedback

Your Answer

 
or
required, but never shown

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