I'm building an app the uses a NSStatusItem. I'm wanting my NSStatusItem to open when clicked and stay open until the user clicks the NSStatusItem again. As of right now, it opens the menu but the NSStatusItem loses focus when I click away from it or click on another app. I would for the NSStatusItem's menu to stay open until the user clicks to close it. Here's my code so far just to make the NSStatusItem. Thanks

-(void)awakeFromNib{
    statusItem = [[[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength] retain];
    [statusItem setMenu:statusMenu];
    [statusItem setTitle:@"Status"];
    [statusItem setHighlightMode:YES];
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You would probably be best off implementing a custom window that opens when you click the status item rather than using a view attached to the status item's menu.

Menus have well-defined opening/closing/mouse tracking behaviour and trying to change it in a subclass will probably just be frustrating.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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