I am trying to figure out a way to connect an IBAction to a menu in the status bar. The goal is to cause this action to show a popover from NSPopover. I read through the similar questions about this topic but I would like to use my approach (if possible). Below are my class files.

My header file:

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate> {
    NSMenu *statusMenu;
    NSStatusItem *statusItem;
}

//@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSPopover *popover;

- (IBAction)showPopover:(id)sender;

@end

My m file:

#import "AppDelegate.h"

@implementation AppDelegate

//@synthesize window = _window;
@synthesize popover;

- (void) awakeFromNib {
    statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];

    [statusItem setTitle:@"StatusBarPopover"];
    [statusItem setMenu:statusMenu];
    [statusItem setHighlightMode:YES];
}

- (IBAction)showPopover:(id)sender {
    [[self popover] showRelativeToRect:[sender bounds] ofView:sender preferredEdge:NSMaxYEdge];
}

@end
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.