i'm trying to code a drag&drop menubar app. i used a custom view to access to the dropped file, and this works fine. now i would like to open the default menu when clicking on this view. i'm using this:
- (void)mouseDown:(NSEvent *)event {
[statusItem popUpStatusItemMenu:statusMenu];
}
now, the mouseDown works fine (trying with NSLog), but still i cannot access to statusItem and statusMenu.
this is in dropView.m, in dropView.h i got:
@interface dropView : NSView{
IBOutlet NSMenu *statusMenu;
NSStatusItem *statusItem;
}
no crash, no logs… any ideas? ty!
this is a bit more from the .m
- (void)awakeFromNib{
statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];
[statusItem setMenu:statusMenu];
dropView *drop = [[dropView alloc] initWithFrame:NSMakeRect(0, 0, 24, 24)];
[statusItem setView:drop];
}
self.statusItem– Dustin Jul 24 '12 at 14:28