Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get NSPopUpButton to render like a standard NSButton with only an image set, but not having any luck.

Much like the "+" button in Mail.app:

Not clicked Clicked

I assume they did this with NSPopUpButton. The obvious thing I've tried is:

NSMenuItem *imageItem = [[[NSMenuItem alloc] init] autorelease];
[imageItem setImage:[NSImage imageNamed:NSImageNameAddTemplate]];

[[popUpButton cell] setUsesItemFromMenu:NO];
[[popUpButton cell] setMenuItem:imageItem];
[[popUpButton cell] setImagePosition:NSImageOnly];

This doesn't show the image however, instead it just shows a pair of arrows (I suspect they're drawn over where the image would be). Calling [popUpButton setImage:...] also does nothing.

Is there a documented way to do this, or does it come down to some custom subclassing?

share|improve this question

3 Answers

up vote 3 down vote accepted

Take a look at this thread and the Apple's sample Menu Madness: they contains some sample code to put an image on a NSPopUpButton.

share|improve this answer
I rarely know of these samples until somebody presents them to me. Thanks very much! This has (almost) exactly what I need. – d11wtq Dec 7 '10 at 23:42

In your example, yes it is probably implemented with an NSPopUpButton, but rather than trying to customize the cell, what you really want is a button with -pullsDown: set to YES.

This is easiest to set up in Interface Builder. Even easier, use BWToolkit which features a button bar and custom buttons specifically for this purpose.

share|improve this answer
Thanks, you're right, I do need pullsDown. What I was actually struggling with however was getting my image to display without displaying the arrows. The Menu Madness sample Laurent mentions has some great examples for little tricks I need to achieve. I'm learning a great deal from building this Cocoa app (which has turned into a much bigger task than I first thought). – d11wtq Dec 7 '10 at 23:44

In Xcode 4.4 you can do all this by using Interface Builder. 1) drag the standard NSPopUpButton to your window, 2) select the Style as whatever type of button you want, 3) chose the button to have an image but don't set the image, 4) drag an NSImage of whatever icon you want on top of the button. I found that using the NSImage instead of setting the image of the button worked much better. Setting the button image caused problems when selecting items in the popup menu.

share|improve this answer

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.