Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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];
}
share|improve this question
Try self.statusItem – Dustin Jul 24 '12 at 14:28
nope this give and error (property not found) – Joe Casini Jul 24 '12 at 14:39
Did you synthesize the properties? – Dustin Jul 24 '12 at 14:46
2012-07-24 16:50:54.107 CopyDrop[13783:403] -[dropView statusMenu]: unrecognized selector sent to instance 0x7fd6eb821760 – Joe Casini Jul 24 '12 at 14:52

1 Answer

Add this to your .h file:

@property (strong, nonatomic) IBOutlet NSMenu *statusMenu;
@property (strong, nonatomic) NSStatusItem *statusItem;

Add this to your .m file:

@synthesize statusMenu, statusItem;

Then you'll access the properties with self.statusMenu and self.statusItem.

share|improve this answer
no change yet… :/ – Joe Casini Jul 24 '12 at 15:05
Error? If no error then NSLog the variables. – Dustin Jul 24 '12 at 15:07
2012-07-24 17:15:27.482 CopyDrop[14728:403] statusMenu: (null) statusItem: (null) – Joe Casini Jul 24 '12 at 15:15
So you're accessing them, they just don't have anything in them. I assumed that you were setting them to something... – Dustin Jul 24 '12 at 15:19
they're… they should! :D topic edited :) – Joe Casini Jul 24 '12 at 15:29
show 4 more comments

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.