I want to show an NSPopover from an NSToolbarItem button in my toolbar.
(i.e. positioned below the button).

Ideally, I want to pass the NSView of the button to the popover to position it.
My question is, how do I get the NSView of the NSToolbarItem?

[toolbarbutton view] always returns nil.

link|improve this question

StackO Aberdeen Meetup 2012: See SO Meetup Link for more info. Seeing you are based in Aberdeen, please try to attend. I'll remove this comment tomorrow. Apologies, but there is no other way to contact on SO. – bPratik Apr 27 at 2:46
Thanks, but I'm actually quite a way north of Aberdeen, so can't make it this time. Thanks anyway. – Stuart Tevendale Apr 28 at 10:03
feedback

2 Answers

up vote 1 down vote accepted

The answer appears to be in the video for the 2011 WWDC Session 113, "Full Screen and Aqua Changes." Basically, put an NSButton inside the NSToolbaritem and use the view of that.

A blog post is here: http://www.yellowfield.co.uk/blog/?p=33, and a sample project is on github at http://github.com/tevendale/ToolbarPopover

All in the sprit of http://xkcd.com/979!

link|improve this answer
feedback

You can send the action directly from the NSButton enclosed in the NSToolbarItem (which is what you should generally do anyways, consider segmented controls, where each segment has its own target/action), and that will do the trick.

link|improve this answer
Thanks - I'll give that a try. – Stuart Tevendale Mar 4 at 18:21
feedback

Your Answer

 
or
required, but never shown

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